In my .tex document I have
[...]
\nocite{*}
\bibliographystyle{amsplain}
\bibliography{bibliografie}
\end{document}
And I have the bibliografie.bib file in the same folder. However, why the bibliography does not appear at the end of the document?
And bibliografie.bib contains the following:
@BOOK{texbook,
author = "Donald E. Knuth",
title= "The {{\TeX}book}",
publisher = "Addison-Wesley",
year = 1984
}
@BOOK{latexbook,
author = "Leslie Lamport",
title = "{\LaTeX \rm:} {A} Document Preparation System",
publisher = "Addison-Wesley",
year = 1986
}
bibtexautomatically, the absence of a.bblfile will mean that there is nothing for latex to read, and therefore no bibliography will ever appear in your document. – barbara beeton May 7 '11 at 13:37test.tex) in the following way:pdflatex test,bibtex test,pdflatex test, andpdflatex test. – Gonzalo Medina May 7 '11 at 19:53