I have two questions about bibtex in beamer. First, I'm doing a beamer presentation and I'd like the default size of the citations to be smaller. That is, whenever I type the \cite{} command, I'd like whatever is cited to appear in, say, scriptsize. After much more googling than I'd care to admit, I have come up with the following:
Code: Select all
\documentclass{beamer}
\usetheme{Singapore}
\usepackage{apacite}
\renewcommand{\BAstyle}{\scriptsize}
\begin{document}
\frame{
\cite{someauthor}
}
\bibliographystyle[notocbib]{apacite}
\bibliography{thebibliography}
\end{document}
Second, is there a way to not have it say "References" as a section in the header of each slide? I have figured out how to not have a references section in the table of contents -- the "notocbib" option in the \usepackage{apacite} command -- but it still lists "references" as a section in the header and I don't want that.
Thanks!