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?
Asked
Active
Viewed 4.1k times
3 Answers
48
\documentclass{beamer}
\begin{document}
\frame{foo}
\bgroup
\setbeamercolor{background canvas}{bg=black}
\begin{frame}[plain]{}
\end{frame}
\egroup
\frame{bar}
\end{document}
-
13You need
\setbeamertemplate{navigation symbols}{}inside your group to make the slide totally blank. – Seamus Apr 02 '11 at 15:56 -
2
3
If you have \mode* on then the background color remains set for subsequent slides even if you have the command wrapped in a group. This works:
\mode<presentation>{
{
\setbeamercolor{background canvas}{bg=black}
\begin{frame}[plain]{}
\end{frame}
}
}
\mode<presentation>{\setbeamercolor{background canvas}{bg=white}}
\mode*
fgregg
- 655
-
I assume that's in the preamble, how exactly do you switch within your document from one slide to another? – Joanne Demmler Aug 01 '13 at 14:26
Bat the right moment... – Seamus Apr 02 '11 at 15:38plainoption that turns off, say, the top bar and lower bar from theinfolinesoutertheme. – Seamus Apr 02 '11 at 16:27[plain]in my test file. – Alan Munn Apr 02 '11 at 16:29