[Tex/LaTex] Beamer – blank black frame

beamer

I'm making a presentation with LaTeX Beamer package. And I want to have a slide where the screen is all black so I can use other media. Is there a way to insert a black slide simply?

Best Answer

\documentclass{beamer}

\begin{document}

\frame{foo}

\bgroup
\setbeamercolor{background canvas}{bg=black}
\begin{frame}[plain]{}
\end{frame}
\egroup

\frame{bar}

\end{document}
Related Question