使用 RMarkdown 在 beamer_presentation 中设置目录深度

使用 RMarkdown 在 beamer_presentation 中设置目录深度

我们如何设置 RMarkdown 中显示的目录级别(深度)的数量beamer_presentation?对于 HTML 文档,我有成立存在一个toc_depth选项,但是它似乎无法被beamer_presentation输出格式识别。

答案1

要仅显示目录中的章节和小章节,而不显示小子章节,请将小子章节样式设置为hide

梅威瑟:

\documentclass{beamer}

\begin{document}

\begin{frame}
\tableofcontents[subsubsectionstyle=hide]
\end{frame}

\section{test}
\subsection{test}
\subsubsection{title}
\begin{frame}
    abc
\end{frame} 

\end{document}

相关内容