There is now 4 hours that I'm Googling to found a solution to my problem but it's still impossible!
Here is the situation: I have some frames in a presentation using the Warsaw theme, on the first one I wanted to remove both headline and footline so I use the \begin{frame}[plain], but I want to, for the next frame, keep the footline but only hide the headline.
I tried the following:
{
\setbeamertemplate{headline}{} %or \setbeamertemplate{headline}[default]
\begin{frame}{Sommaire}
\tableofcontents
\end{frame}
}
But, although the content of the headline is removed, it keeps the space blank (as it is used, but not available for my content). So, there is a white space below my frame title... (Table of Contents).
I don't want to have the plan of my presentation in the header here as it is a frame showing the plan ...
Is there anyone here who could help me?
\setbeamertemplate{headline}[default]before the\begin{document}, the "white space" is not here on all the frames. But none of the frames have the headline. And here, I want to keep the headline on all the frames except the ones I choose (table of contents here, as the title page is on plain format).Thanks
– XaF Feb 18 '12 at 22:46\setbeamertemplate{headline}[default]before\begin{document}works is that the relevant lengths like\headheight,\textheight, ... are calculated once (with\beamer@calculateheadfoot) at the beginning of the document. Anyway, that's a nice solution you found!:-)– diabonas Feb 19 '12 at 15:03