Switch Overlay Specification in Latex Beamer

Viewed 338

I have a beamer document with

\beamerdefaultoverlayspecification{<+->}

in the preamble to make \items appear separately. However, this seems to also make \bibitems appear separately. How can I switch back to 'normal' within the document, such that all bibitems appear on one slide?

1 Answers

You can change the default overlay specification before the bibliography:

\documentclass{beamer}

\usepackage{biblatex}
\addbibresource{biblatex-examples.bib}

\beamerdefaultoverlayspecification{<+->}

\begin{document}

\begin{frame}
\begin{itemize}
\item content...
\item content...
\end{itemize}
\end{frame}

\beamerdefaultoverlayspecification{}

\begin{frame}
\nocite{knuth:ct,angenendt}
\printbibliography
\end{frame}

\end{document}

enter image description here

Related