Como dou cursos acadêmicos — e não apresentações —, tenho que dividir com muita precisão as seções dos meus cursos. Para fazer isso, preciso usar a subsubseção que aparece no toc. Como eu poderia fazer isso? Este é o meu 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}
Responder1
Você pode usar \subsubsection
exatamente da mesma maneira que \section
e \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}