
Estoy creando una presentación más larga usando Beamer y estoy usando subsecciones "malvadas". Estoy usando la opción pausar subsecciones para la tabla de contenido. El problema es que no sólo se pausan las subsecciones, sino también cada subsubsección, lo cual es molesto. ¿Cómo puedo deshacerme de esto?
Aquí hay un ejemplo de trabajo mínimo:
\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}
Respuesta1
Puede parchear el comando \beamer@subsubsectionintoc
y eliminar la línea responsable de agregar la \pause
macro.
\usepackage{etoolbox}
\makeatletter
\patchcmd{\beamer@subsubsectionintoc}{\ifbeamer@pausesubsections\pause\fi}{}{}{}
\makeatother