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

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

User avatar
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