I'm editing a theme beamer, but I have a trouble I would like to remove the header without remove neither footer or the lateral navigation bar. I've tried with the follow option:
\defbeamertemplate*{headline}{split theme}
{
%nothing
}
but when I try to compile I receive the follow error:
! LaTeX Error: Command \beamer@@tmpop@headline@split theme already defined.
I use theme PaloAlto. I hope that somebody can help me.
EDIT by Marco Daniel:
Here the solution presented as a minimal working example:
\documentclass{beamer}
\usetheme{PaloAlto}
\setbeamertemplate{headline}{}
\begin{document}
\section{foo}
\begin{frame}
\frametitle{bar}
Text
\end{frame}
\end{document}



tex-corewhich is about the lower level of TeX. – Martin Scharrer♦ Oct 30 '11 at 19:45\setbeamertemplate{headline}{}– Marco Daniel Oct 30 '11 at 19:48beamerdocumentation (p 172, section 16.3.3 Setting Beamer's Templates) regarding\defbeamertemplate: "This command installs a predefined option for the template<element name>. Once this command has been used, users can access the predefined template using the\setbeamertemplatecommand." Does using\setbeamertemplatework? – Werner Oct 30 '11 at 19:50