Mercurial > cortex
comparison thesis/aux/mitthesis/README.bibliography @ 460:763d13f77e03
merge in laptop changes.
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Thu, 27 Mar 2014 17:57:01 -0400 |
parents | 6b0f77df0e53 |
children |
comparison
equal
deleted
inserted
replaced
459:a86555b02916 | 460:763d13f77e03 |
---|---|
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. | |
4 | |
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. | |
9 | |
10 Citing your references: | |
11 | |
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: | |
16 | |
17 key=geer1 | |
18 | |
19 Then you would use \cite{geer1} to reference it within your thesis. | |
20 | |
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: | |
24 | |
25 \nocite{key} | |
26 | |
27 This should be done for every entry which is not explicitly cited. | |
28 |