Page Layoutbeamer - removing headers

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
manflower
Posts: 4
Joined: Sat Jan 30, 2010 7:42 pm

beamer - removing headers

Post by manflower »

Hello,
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.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

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

gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

beamer - removing headers

Post by gmedina »

Hi,

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}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Post Reply