Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
LaTeX Beamer では、スライドの総数には、各セクション/サブセクションの前に目次のみを含むスライドが含まれるため、スライドの総数が不必要に増加します。これを防ぐ方法はありますか?
つまり、TOC を含むスライドにページ番号を付けたくありません。
よろしく、 mefiX
行を追加
\addtocounter{framenumber}{-1}
合計カウントから除外する各フレームで。
こちらの Stackoverflow に関する他の質問も参照してください。
[plain]ヘッダーとフッターを表示しないように追加します。最後に、\addtocounter{framenumber}{-1} ページ番号をインクリメントしないように追加します。
[plain]
\AtBeginSection[]{% \begin{frame}[plain] \addtocounter{framenumber}{-1} \tableofcontents[currentsection] \end{frame} }