I'm using TexMakerX on a PC. I started using a thesis template provided by my university, and it all works fine except for the bibliography. The quickbuild is set to LaTex/Bibtex/Latex/PDF-Latex/PDF-viewer. It returns the errors:
The .bib file seems to be in the right format, and a .bbl file is produced, but in the pdf, the in-text citation appears as [?] and no references appear at the end. This is also the case if I use \nocite.Citation '5' on page 1 undefined on input line 4.
Empty 'thebibliography' environment on input line 3.
There were undefined references.
After much mucking around unsuccessfully I looked at the tutorial example at http://www.andy-roberts.net/writing/lat ... iographies and made a small test file to see what was going wrong. However, I get exactly the same error messages and problems. Here is my .tex file:
Code: Select all
\documentclass{article}
\bibliographystyle{plain}
\begin{document}
See \cite{5} for details.
\bibliography{testbib}
\end{document}
Code: Select all
@article{5,
author = {Sutherland, T. D. and Young, J. H.},
title = {Insect silk: One name, many materials},
journal = {Annual Review of Entomology},
volume = {55},
pages = {171-188},
year = {2010}
}
Cheers!