Quero ter os números dos slides no índice do beamer. Achei esta postagem útil e funciona para mim, mas também preciso dos números das páginas das subsubseções. Infelizmente, não tenho ideia do que mudar neste código detalhado.
Qualquer ajuda seria muito apreciada. Obrigado.
Danilo
Responder1
Essas informações são armazenadas no .toc
arquivo. Você só precisa contarprojetorcomo usá-los. Consulte beamerbasetoc.sty
para obter mais informações.
\documentclass{beamer}
\begin{document}
\makeatletter
\def\beamer@endinputifotherversion#1{}
\def\beamer@sectionintoc#1#2#3#4#5{{\huge #2 \hfill page #3 \par}}
\def\beamer@subsectionintoc#1#2#3#4#5#6{{\normalsize #3 \hfill page #4 \par}}
\def\beamer@subsubsectionintoc#1#2#3#4#5#6#7{{\tiny #4 \hfill page #5 \par}}
\frame{
\tableofcontents
}
\section{Section 1}\frame{}\frame{}
\subsection{Subsection 1-1}\frame{}\frame{}
\subsubsection{Subsubsection 1-1-2}\frame{}\frame{}
\subsubsection{Subsubsection 1-1-2}\frame{}\frame{}
\subsection{Subsection 1-2}\frame{}\frame{}
\subsubsection{Subsubsection 1-2-2}\frame{}\frame{}
\subsubsection{Subsubsection 1-2-2}\frame{}\frame{}
\section{Section 2}\frame{}\frame{}
\subsection{Subsection 2-1}\frame{}\frame{}
\subsubsection{Subsubsection 2-1-2}\frame{}\frame{}
\subsubsection{Subsubsection 2-1-2}\frame{}\frame{}
\subsection{Subsection 2-2}\frame{}\frame{}
\subsubsection{Subsubsection 2-2-2}\frame{}\frame{}
\subsubsection{Subsubsection 2-2-2}\frame{}\frame{}
\end{document}