theresesmith wrote:I would like to post to LaTeX forum, but do not see an affordance that will let me. […]
You already managed to open a topic in the »New Members« area. Hence you should be able to do so in every other sub-forum here. Just click the »New Topic« button right beneath the forum title. Otherwise refer to the
FAQ. Your question has been split to a new topic.
theresesmith wrote:[…] Once I see it, there is an image I would like to upload, if that is allowed. It shows the citation correct popup, and the citation undefined error message, all in the same image, with the minimal example. […]
Of course it's allowed to upload images. We prefer the upload to the forum server. Error messages are better posted directly from the log file (*.log) and not as a screen capture.
Regarding your problem, you will need to put the bibliography into a
frame
environment. This will also require that you run BibTeX (or Biber) in between. Your editor should support this in the same way as it supports compilation.
Code: Select all
\documentclass{beamer}
\title{A Tiny Example}
\author{Andrew Mertz and William Slough}
\date{June 15, 2005}
\bibliographystyle{plain}
\begin{document}
%\maketitle
\begin{frame}
%\frametitle{First Slide}
by these organisms\cite{gu2013emerging}
\end{frame}
\begin{frame}{References}
\bibliography{literature}
\end{frame}
\end{document}
If that doesn't help, please prepare a
self-contained example to give an
adequate description of the problem.
Thorsten