[Tex/LaTex] Hiding section slides in beamer but not in the headline

beamersectioningslideshow

Is there a way to hide a section slide in beamer without removing it from the headline?

Best Answer

\documentclass{beamer}
\usetheme{metropolis}

\begin{document}

{
\AtBeginSection{}
\section{section}
\begin{frame}
\frametitle{title}
42
\end{frame}
}

\section{section}
\begin{frame}
\frametitle{title}
42
\end{frame}

\end{document}