Mercurial > cortex
comparison thesis/aux/mitthesis/README.bibliography @ 422:6b0f77df0e53
building latex scaffolding for thesis.
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Fri, 21 Mar 2014 01:17:41 -0400 |
parents | thesis/mitthesis/README.bibliography@c2c28c3e27c4 |
children |
comparison
equal
deleted
inserted
replaced
421:c2c28c3e27c4 | 422:6b0f77df0e53 |
---|---|
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 |