Table of Contents
The bib file contains the bibliographic database, which could extend beyond one document.
*References*: [ASI] s3, p30.
At the end of your source file (where you want the bibliography to appear),
\bibliography{mybib,urls,general}
*References*: [ASI] s3.3, p40.
To cite particular references, the LATEX command is "\cite{label [, … ]}, where label is what we put in our bib file entry.
The bibtex program that you apply to your source creates another file (which you need not examine), from which a second latex compilation causes the bibliography to be created. The execution looks like this:
latex myfile bibtex myfile latex myfile
be sure no .tex extension is used, esp. the second time! |
*References*: [ASI] s3, p30.