Compiling LaTeX document with BibTeX references to PDF

Step-by-Step descriptions of how to do things.
Post Reply
User avatar
^rooker
Site Admin
Posts: 1481
Joined: Fri Aug 29, 2003 8:39 pm

Compiling LaTeX document with BibTeX references to PDF

Post by ^rooker »

When compiling a LaTeX document using BibTeX for handling literature reference sources, one must issue the following 4 commands in order to produce a .pdf file:

Code: Select all

pdflatex mydocument
bibtex mydocument
pdflatex mydocument
pdflatex mydocument
Important is that you omit the file ending ".tex" for "mydocument.tex", as this would confuse bibtex and result in the following error message:
I couldn't open file name `mydocument.tex.aux'
Thanks to the following sites for explaining how to compile LaTeX with BibTeX:
BibTeX and bibliography styles
Pdflatex and bibtex
Jumping out of an airplane is not a basic instinct. Neither is breathing underwater. But put the two together and you're traveling through space!
Post Reply