[Tex/LaTex] How to remove the header of the ToC’s page and to place the ToC’s title at top

beamer

Is it possible to remove the header of the ToC's page and to place its title at the top?
If it is, how, please?

MWE:

\documentclass[xcolor={dvipsnames}]{beamer}
\usetheme{CambridgeUS}

\author{The Author}
\title{Work Culture}
\begin{document}
\begin{frame}
\titlepage
\end{frame}

\begin{frame}{Outline}
  \tableofcontents
\end{frame}

\begin{frame}
\frametitle{Test title}
\framesubtitle{Test subtitle}
test text
\end{frame}

\end{document}

Thanks a lot!

Best Answer

You can locally set the headline template to be empty and use \addtobeamertemplate to add an appropriate vertical skip before the frame title (depending on the used theme you might need to adjust the 1.7ex I used in my example):

\begingroup
\setbeamertemplate{headline}{}
\addtobeamertemplate{frametitle}{\vskip-1.7ex}{}
\begin{frame}{Outline}
  \tableofcontents
\end{frame}
\endgroup

A complete example_

\documentclass[xcolor={dvipsnames}]{beamer}
\usetheme{CambridgeUS}

\author{The Author}
\title{Work Culture}
\begin{document}
\begin{frame}
\titlepage
\end{frame}

\begingroup
\setbeamertemplate{headline}{}
\addtobeamertemplate{frametitle}{\vskip-1.7ex}{}
\begin{frame}{Outline}
  \tableofcontents
\end{frame}
\endgroup

\begin{frame}
\frametitle{Test title}
\framesubtitle{Test subtitle}
test text
\end{frame}

\end{document}

enter image description here