Hide Headline – Latex – Beamer

To hide the header or headline in Beamer presentations, wrap the frames with \setbeamertemplate{headline}{}. Headline is the horizontal strip that contains the title of the presentation, author, chapter info and such.

For example, in Frame 1 and 2 below, headline will not be present.

{
\setbeamertemplate{headline}{}

\begin{frame}{Frame 1}
% some content
\end{frame}

\begin{frame}{Frame 2}
% some content
\end{frame}
}