I downloaded Mac-Tex, so it comes with TeXShop and BibDesk. I've put the latex and bibtex files I'm trying to work with below. My problem is, is that when I click the 'typeset' button in TeXShop, the resulting pdf doesn't include the Bibliography section. I managed to get it to come up with the Bibliography section once before, but it didn't have my reference in it.
I've read the documentation on the BibDesk and Bibtex sites but I still can't get it working, I guess I'm just slow.
Now I don't know if I have to somehow link them together, all I've done is place them in the same folder together and thats it.
Whats in the latex file
Code: Select all
\documentclass[a4paper,12pt]{book}
\usepackage{cite}
\begin{document}
\title{something}
\author{me}
\date{2nd March 2008}
\maketitle
\begin{equation}
z(w,z) = \int{\sin(x)}dx
\end{equation}
pretend reference \cite{Lang:2000}
\bibliography{references}
\bibliographystyle{apa}
\end{document}
Whats in the references.bib file
Code: Select all
@conference{Lang:2000,
Address = {Athens, Greece},
Author = {J.H. Lang},
Booktitle = {Something else},
Date-Added = {2008-03-02 10:59:35 +1100},
Date-Modified = {2008-03-02 12:50:43 +1100},
Pages = {20-30},
Read = {No},
Title = {Something},
Year = {2000}}