[Tex/LaTex] How to hide the navigation symbols from specific Beamer slides

beamernavigation

I'm using my navigation symbols as page numbers, as in this answer. Is there a way to hide them from certain specific slides, like the title and TOC slides? The plain frame option doesn't work.

Best Answer

Of course, you can use \setbeamertemplate{navigation symbols}{} to suppress navigation symbols. To limit its scope, we can simply put it with the frames it is supposed to affect into a local group.

\documentclass{beamer}

\title{Awesome presentation}
\author{John Smith}
\date{A high-profile conference}

\AtBeginSection[]{%
  \begingroup
  \setbeamertemplate{navigation symbols}{}
  \begin{frame}
  \frametitle{Outline}
  \tableofcontents[currentsection]
  \end{frame}
  \endgroup
}

\begin{document}

\begingroup
\setbeamertemplate{navigation symbols}{}
\frame[plain]{\titlepage}
\endgroup

\begingroup
\setbeamertemplate{navigation symbols}{}
\begin{frame}
\frametitle{Outline}
\tableofcontents
\end{frame}
\endgroup

\section{Introduction}

\begin{frame}
\frametitle{Introduction}
Hi!
\end{frame}

\section{Results}

\begin{frame}
\frametitle{Results}
Isn't this awesome?
\end{frame}

\begin{frame}
\frametitle{Thank you!}
\end{frame}

\end{document}

Here is the output (7 frames in total):

frame sample