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.
Asked
Active
Viewed 2,739 times
6
tparker
- 719
1 Answers
7
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):
Ruixi Zhang
- 9,553
-
What about hiding the navigation bar only for one overlay of one frame? Is it possible? – João Alves Jr. Mar 16 '23 at 18:41
