[Tex/LaTex] Show only section overview on slides starting new sections

beamer

How can I make Beamer only show the section overview/navigation/progress (the stuff shown on the top of every slide in for example the Warsaw theme) on specific slides? In particular, I'd like it to only appear on the slides starting new sections.

(This question seems very close to some that are already asked and answered, so I'm sorry if I overlooked something.)

Best Answer

I'm not sure I have understood the question, but have you tried something like that in the preamble ?

\AtBeginSection[] 
{%
\begin{frame} %% ToC
\tableofcontents[currentsection]
\end{frame}
}