I'm trying to use BibTeX for the first time, ran into trouble.
I've got a "document.tex" file:
...and a "references.bib" file:
I've tried this using TeXShop's 'Typeset' command (gives "I couldn't open file references.aux") and also using texmaker's 'BibTex' command (gives "Process exited with error(s)").
So, what am I doing wrong?
I've got a "document.tex" file:
Code:
\input{preamble}
\begin{document}
\include{chapter1}
\bibliography{references}
\end{document}
...and a "references.bib" file:
Code:
@article{a+b,
author = "P. Aaaaaa, O. Bbbbbb, and K. Ccccccc",
title = "Toward Large of Stuff",
journal = "Some Letters",
volume = 3,
pages = (347--351),
year = 2003,
}
I've tried this using TeXShop's 'Typeset' command (gives "I couldn't open file references.aux") and also using texmaker's 'BibTex' command (gives "Process exited with error(s)").
So, what am I doing wrong?