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.
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
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}