如何在 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}

在此处输入图片描述

相关内容