[Tex/LaTex] beamer – change titlepage not to show details in headline/footline

beamerheader-footertitles

I am using the Berlin theme to create a presentation with beamer. I like the fact that the headline and footline show the navigation, author, etc, but I would like to hide that information on the titleslide, as it is already displayed there, and have it appear again on all following slides.

I, however, do not want to lose the head- and footline themselves (using \setbeamertemplate{headline}{} for example just makes the whole headline disappear).

This question is somewhat similar to mine, but I tried modifying the code showed there, which did not work for me (see MWE below).

MWE:

\documentclass{beamer}

\title{Title}
\author{Jane Doe}
\institute{University of Foo}
\date{\today}

% Beamer setup
\usetheme{Berlin}
\usecolortheme{spruce}
\setbeamertemplate{navigation symbols}{}

\renewcommand*{\slideentry}[6]{} % hide subsection bullets and remove space

\begin{document}

%\setbeamertemplate{headline}{}
\frame{\titlepage}

%\setbeamertemplate{headline}[headline theme]
\section{Test}
\begin{frame}
  Test
\end{frame}

\end{document}

Best Answer

Instead of doing all trouble to acutually remove the information from head/footline, it can simply be hidden by setting the font colour equal to the background colour.

\documentclass{beamer}

\title{Title}
\author{Jane Doe}
\institute{University of Foo}
\date{\today}

% Beamer setup
\usetheme{Berlin}
\usecolortheme{spruce}
\setbeamertemplate{navigation symbols}{}

\renewcommand*{\slideentry}[6]{} % hide subsection bullets and remove space

\begin{document}

{
\setbeamercolor{author in head/foot}{use=palette secondary, fg=palette secondary.bg} 
\setbeamercolor{title in head/foot}{use=palette tertiary, fg=palette tertiary.bg} 
\setbeamercolor{section in head/foot}{use=palette tertiary, fg=palette tertiary.bg}
\frame{\titlepage}
}

%\setbeamertemplate{headline}[headline theme]
\section{Test}
\begin{frame}
  Test
\end{frame}

\end{document}

enter image description here