
Normalmente uso o seguinte para mostrar um índice no início de cada seção:
\AtBeginSection[]{%
\begin{frame}
\tableofcontents[currentsection, subsectionstyle=show/show/hide]
\end{frame}
}
Portanto, se eu usar \section*{title}
, não haverá índice no início dessa seção. No entanto, gostaria que o título da seção aparecesse no índice e que a seção fosse numerada.
Responder1
Você pode desativar temporariamente o toque automático no início de uma seção:
\documentclass{beamer}
\AtBeginSection[]{%
\begin{frame}
\tableofcontents[currentsection, subsectionstyle=show/show/hide]
\end{frame}
}
\begin{document}
\section{section with toc}
\begin{frame}
content...
\end{frame}
{
\AtBeginSection[]{}
\section{section withou toc}
\begin{frame}
content...
\end{frame}
}
\section{section with toc}
\begin{frame}
content...
\end{frame}
\end{document}