我想在 Beamer 的目录中添加幻灯片编号。我发现了这篇有用的帖子,它对我来说很有用,但我还需要子部分的页码。不幸的是,我不知道该在这个冗长的代码中做哪些更改。
任何帮助都将不胜感激。谢谢。
丹尼尔
答案1
这些信息存储在.toc
文件中。你只需要告诉投影机如何使用它们。请参阅beamerbasetoc.sty
以了解更多信息。
\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}