如何在Beamer類別中使用subsubsection?

如何在Beamer類別中使用subsubsection?

當我教授學術課程(而不是演示)時,我必須非常精確地劃分課程的各個部分。為了做到這一點,我需要使用目錄中出現的小節。我怎麼能這麼做呢?這是我的 MWE:

\documentclass{beamer}
    \usepackage[frenchb]{babel}
    \usepackage[T1]{fontenc}
    \usepackage[utf8]{inputenc}
    \setbeamertemplate{section in toc}{\hspace*{1em}\inserttocsectionnumber.~\inserttocsection\par}
    \setbeamertemplate{subsection in toc}{\hspace*{2em}\inserttocsectionnumber.\inserttocsubsectionnumber.~\inserttocsubsection\par}


    \begin{document}
    \maketitle
    \begin{frame}{outline}
    \tableofcontents    
    \end{frame}

    \section{A title}

    \end{document}

答案1

您可以以與和\subsubsection完全相同的方式使用:\section\subsection

\documentclass{beamer}
\setbeamertemplate{section in toc}{\hspace*{1em}\inserttocsectionnumber.~\inserttocsection\par}
\setbeamertemplate{subsection in toc}{\hspace*{2em}\inserttocsectionnumber.\inserttocsubsectionnumber.~\inserttocsubsection\par}
\setbeamertemplate{subsubsection in toc}{\hspace*{3em}\inserttocsectionnumber.\inserttocsubsectionnumber.\inserttocsubsubsectionnumber.~\inserttocsubsubsection\par}
\begin{document}

\begin{frame}{outline}
\tableofcontents    
\end{frame}

\section{Section title}
\begin{frame}{Section frame}
\end{frame}

\subsection{Subsection title}
\begin{frame}{Subsection frame}
\end{frame}

\subsubsection{Subsubsection title}
\begin{frame}{Subsubsection frame}
\end{frame}

\end{document}

在此輸入影像描述

相關內容