Como doy cursos académicos (y no presentaciones), tengo que dividir con mucha precisión las secciones de mis cursos. Para hacer esto, necesito usar la subsubsección que aparece en el toc. ¿Cómo podría hacer eso? Este es mi MWE:
\documentclass{beamer}
\usepackage[frenchb]{babel}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\setbeamertemplate{section in toc}{\hspace*{1em}\inserttocsectionnumber.~\inserttocsection\par}
\setbeamertemplate{subsection in toc}{\hspace*{2em}\inserttocsectionnumber.\inserttocsubsectionnumber.~\inserttocsubsection\par}
\begin{document}
\maketitle
\begin{frame}{outline}
\tableofcontents
\end{frame}
\section{A title}
\end{document}
Respuesta1
Puedes usar \subsubsection
exactamente de la misma manera que \section
y \subsection
:
\documentclass{beamer}
\setbeamertemplate{section in toc}{\hspace*{1em}\inserttocsectionnumber.~\inserttocsection\par}
\setbeamertemplate{subsection in toc}{\hspace*{2em}\inserttocsectionnumber.\inserttocsubsectionnumber.~\inserttocsubsection\par}
\setbeamertemplate{subsubsection in toc}{\hspace*{3em}\inserttocsectionnumber.\inserttocsubsectionnumber.\inserttocsubsubsectionnumber.~\inserttocsubsubsection\par}
\begin{document}
\begin{frame}{outline}
\tableofcontents
\end{frame}
\section{Section title}
\begin{frame}{Section frame}
\end{frame}
\subsection{Subsection title}
\begin{frame}{Subsection frame}
\end{frame}
\subsubsection{Subsubsection title}
\begin{frame}{Subsubsection frame}
\end{frame}
\end{document}