Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am writing my thesis in Latex, and I have the references in an own thesis.bib file which look as follows

@Article{xxx,
  author =       "D.A. Reinhard",
  title =        "Case Study",
  year =         "1985",
}

and I reference them in my main document as ~\cite{xxx}

When I compile then the main document with: pdflatex main.tex than it shows me question marks instead of the proper references to the bibliography. Do I also need to compile the bib source on its own? If yes, can somebody please tell me the command for Linux

Many thanks!

share|improve this question

2 Answers

You need to compile the bibtex file.

Suppose you have article.tex and article.bib. You need to run:

  • latex article.tex (this will generate a document with question marks in place of unknown references)
  • bibtex article (this will parse all the .bib files that were included in the article and generate metainformation regarding references)
  • latex article.tex (this will generate document with all the references in the correct places)
  • latex article.tex (just in case if adding references broke page numbering somewhere)
share|improve this answer
1  
Also, consider using latex mk (phys.psu.edu/~collins/software/latexmk-jcc), a perl program that automatically runs whatever is needed (latex, bibtex, makeindex, etc.) in the correct order to produce an updated final document whenever you change something. – rcollyer Mar 18 '10 at 17:21
1  
I strongly second that recommendation of latexmk. I couldn't live without it :) – Damien Pollet May 14 '10 at 18:47
I edited this answer because the bibtex command does not allow an extension. (and the extension would be ".aux" not ".tex" for it even if it did) – Dr. Person Person II Apr 26 '11 at 0:19
Consider using pdflatex instead of latex to directly produce a .pdf file. – koppor Oct 8 '12 at 12:32

You have to run 'bibtex':

latex paper.tex
bibtex paper
latex paper.tex
latex paper.tex
dvipdf paper.dvi
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.