view thesis/aux/mitthesis/README.bibliography @ 538:cfbcd2b11087

spellcheck.
author Robert McIntyre <rlm@mit.edu>
date Sun, 27 Apr 2014 21:50:25 -0400
parents 6b0f77df0e53
children
line wrap: on
line source
1 This file gives an overview on what you will need to do to create a
2 bibliographic database for references, as well as create the actual
3 bibliography for your thesis.
5 You should not need to touch the file biblio.tex. This merely tells
6 latex to look for the file with the bibliographic info. The file you
7 want to edit is main.bib. For each entry, use the appropriate style
8 as designated in the file.
10 Citing your references:
12 When you cite a reference, you need to use the ``key'' you declare in
13 main.bib for the entry. No one ever sees the keys, but you'll want to
14 use something you will easily remember. For instance, if you had an
15 entry with:
17 key=geer1
19 Then you would use \cite{geer1} to reference it within your thesis.
21 NOTE: You can not include references in your bibliography that are
22 never cited in your paper by default. If you need to do this, create a
23 key for the entry and at the end of your thesis include the line:
25 \nocite{key}
27 This should be done for every entry which is not explicitly cited.