"I find no warrant for such an appropriation in the Constitution, and I do not believe that the power and the duty of the General Government ought to be extended to the relief of individual suffering which is in no manner properly related to the public service or benefit... The friendliness and charity of our countrymen can always be relied upon to relieve their fellow citizens in misfortune. Federal aid in such cases encourages the expectation... Read more...
I had a tricky time adding my BibTeX bibliography in Beamer. At first, I got an error about having to do with "\newblock" It turns out that command is not defined in Beamer and must be manually added with this line near the top of your document:
\def\newblock{\hskip .11em plus .33em minus .07em}
Then, after citing references in the normal manner in the text, the bibliography slide can be created via:
A BibTeX reference can possibly be manually added to a slide using the code snippet below, but it will generate an "Undefined control sequence - \end{frame}" error that I haven't figured out how to get around. So far I have not discovered any reliable to way insert a full bibliography (like above) AND insert individual, full references in random slides. So I ended up typing out the few references I needed to insert in the middle of my presentation, rather than continue with the error this code generated.
Comments
\documentclass{ beamer}
% whatever packages you need
% and your beamer setup
\usepackage{bib entry}
\nobibliography *
\let\newblock\r elax
\begin{document }
%--- the titlepage frame -------------------------%
\begin{frame}[p lain]
\titlepage
\end{frame}
%--- the presentation begin here -----------------%
\section{Exampl e}
\begin{frame}{E xample}
\begin{itemize}
\item XXXX
\item[] {\footnotesize \bibentry{vanvo rst11:spherical}}
\end{itemize}
\end{frame}
\section{Biblio graphy}
\begin{frame}[a llowframebreaks ]
\bibliographyst yle{apalike}
{\tiny
\bibliography{../dissertation}
}
\end{frame}
\end{document}
RSS feed for comments to this post