Latex ビーマー: サブセクションのスライド番号

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}

関連情報