Mercurial > cortex
view thesis/mitthesis/main.bib.info @ 421:c2c28c3e27c4
get mit thesis template file.
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Fri, 21 Mar 2014 00:08:49 -0400 |
parents | |
children |
line wrap: on
line source
1 To comment out part of an entry in BibTeX, you can use:3 @Comment{body of text}5 If you wish to comment out the entire entry, just remove the @ sign in6 front of the entry type (i.e., get rid of the '@' in "@Book").8 *************************************************************************10 You can specify fixed strings (say if you needed to use it multiple11 times in your BibTeX file) with the @String command:13 @String(Leslie-Lamport = {Leslie Lamport})15 and then you could use it in various entries:17 @Book{latex,18 Author = Leslie-Lamport,19 Title = "\LaTeX",20 ...21 Year = "1993"}23 *************************************************************************25 The required fields are not prefaced with OPT. Those that are optional26 *are* prefaced with OPT (remember to delete those three characters should27 you wish to use those fields).29 [Note:30 For most entry types the "author" information is simply the AUTHOR31 field. However: For the @Book and @Inbook entry types it's the AUTHOR32 field, but if there's no author then it's the EDITOR field; for the33 @Manual entry type it's the AUTHOR field, but if there's no author then34 it's the ORGANIZATION field; and for the @Proceedings entry type it's35 the EDITOR filed, but if there's no editor then it's the ORGANIZATION36 field.]38 To use this, just have your main.tex specify the following:40 \bibliography{main}41 \bibliographystyle{plain}43 There are several options for bibliographystyle:45 plain normal style - listed in ABC order and labeled numerically46 unsrt same as plain except entries appear in order of citation47 alpha same as plain except entry labels are used48 abbrv same as plain except uses abbreviations for first names,49 month names, and journal names51 Now that you have the basis for a bibliography, you have to run both52 latex and bibtex on the document. First, you should run latex (to53 create a foo.aux file, which bibtex reads). Then run bibtex once to get54 some of the citations and create a .bbl file. Then run latex again so55 that the cross references between the text file and the bibliography are56 correct. You may want to repeat running bibtex and latex on the file to57 make sure that all cross references are correct. Be warned that58 adding/deleting citations and sources will require running bibtex again.60 For more information on this topic, please refer the following pages in61 the LaTeX manual by Leslie Lamport:63 72-74 Bibliography and Citation64 74-74 BibTeX65 140-147 Format of the .bib File (also gives info on other entry types) 187-188 Bibliography and Citation67 ----------------------------------------