라텍스 비머: 하위 섹션의 슬라이드 번호

라텍스 비머: 하위 섹션의 슬라이드 번호

비머의 목차에 슬라이드 번호를 넣고 싶습니다. 나는 이 유용한 게시물을 찾았고 그것은 나에게 효과적이지만 하위 섹션에 대한 페이지 번호도 필요합니다. 불행하게도 이 장황한 코드에서 무엇을 변경해야 할지 전혀 모르겠습니다.

페이지 번호가 포함된 목차

어떤 도움이라도 대단히 감사하겠습니다. 감사합니다.

다니엘

답변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}

관련 정보