I have a problem with apa6, apacite, etc. In the process of creating a mwe, I ran across code here on this site as a mwe, but it doesn't work. When compiled (Texpad on a Mac, using Bibtex), it produces [?] as the citation.
Here's the code:
\documentclass{article}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@book{Knu86,
author = {Knuth, Donald E.},
year = {1986},
title = {The \TeX book},
}
\end{filecontents}
\begin{document}
Doesn't work. \cite{Knu86}
\bibliography{\jobname}
\end{document}
Thanks for any help on the mwe so I can post my real problem.
.bblfile, then latex twice more. (the first latex run puts the reference info into the log file for bibtex to use; bibtex creates the.bblfile, the first post-bibtex latex run reads the.bblfile and puts the biblio labels into the new.auxfile, and the last latex run picks up these labels and resolves the\cites. with fewer runs of latex, in the proper sequence with bibtex, there isn't enough information to fill in the\citeinfo, and you get??instead.) – barbara beeton Apr 28 '13 at 03:32