I hoping someone can help me with what I am sure is a noob problem. I am simply trying to insert a citation from BibDesk into a LaTeX document. My MWE looks like this:
\documentclass{article}
\usepackage{bibentry}
\bibliographystyle{plain}
\begin{document}
\section{test}
test cite should be here: \cite{brown08}.
\bibliography{cvpubs.bib}
\end{document}
My bib file is called cvpubs.bib and is in the same directory as the above MWE LaTeX document. The cvpubs.bib file looks like this:
@article{brown08,
Author = {Seth Brown and Michael Cole and Albert Erives},
Date-Added = {2011-10-22 21:01:18 +0000},
Date-Modified = {2011-10-22 21:57:01 +0000},
Journal = {BMC Genomics},
Keywords = {evolution, myc},
Month = {September},
Number = {442},
Rating = {5},
Read = {1},
Title = {Evolution of the holozoan ribosome biogenesis regulon},
Volume = {9},
Year = {2008}}
Thanks in advance for the help!
\bibliographyshouldn't have the extension: try\bibliography{cvpubs}– egreg Oct 22 '11 at 22:25latex,bibtex,latex,latexin that sequence? @egreg: The MWE works on my computer, even though it claimsDatabase file #1: cvpubs.bib.bib. Strange... – Andy Oct 23 '11 at 7:53bibtexas well as (pdf/xe)latex? If you don't run bibtex once, you'll just be stuck with warnings about undefined references. – Mico Oct 27 '11 at 2:32