Latex Beamer:小節的投影片編號

Latex 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}

相關內容