
Estou criando uma apresentação mais longa usando o beamer e usando subsubseções 'malignas'. Estou usando a opção pausesubsections para o índice. O problema é que não apenas as subseções são pausadas, mas também cada subseção, o que é irritante. Como posso me livrar disso?
Aqui está um exemplo mínimo de trabalho:
\documentclass{beamer}
\begin{document}
\begin{frame}
\tableofcontents[pausesubsections]
\end{frame}
\section{Test}
\subsection{Test}
\subsubsection{Test}
\begin{frame}
Test
\end{frame}
\subsubsection{Test}
\begin{frame}
Test
\end{frame}
\subsection{Test}
\subsubsection{Test}
\begin{frame}
Test
\end{frame}
\subsubsection{Test}
\begin{frame}
Test
\end{frame}
\end{document}
Responder1
Você poderia corrigir o comando \beamer@subsubsectionintoc
e remover a linha responsável por adicionar a \pause
macro.
\usepackage{etoolbox}
\makeatletter
\patchcmd{\beamer@subsubsectionintoc}{\ifbeamer@pausesubsections\pause\fi}{}{}{}
\makeatother