Page Layout ⇒ beamer - removing headers
beamer - removing headers
I am currently using beamer, and I would like to have a couple of slides which do not follow the general formatting - I want them to be empty completely and I will generate text and graphics on them myself (no header, footer should stay, I want to include page number). How is that possible?
Thanks.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
beamer - removing headers
you can use the plain option for those frames; a little example:
Code: Select all
\documentclass{beamer}
\usetheme{Warsaw}
\begin{document}
\begin{frame}
Hello
\end{frame}
\begin{frame}[plain]
Hello
\end{frame}
\begin{frame}
Hello
\end{frame}
\end{document}