将 \paragraph 类型的条目添加到 beamer 目录中

将 \paragraph 类型的条目添加到 beamer 目录中

我想要一个像这样的投影仪目录幻灯片:

第 1 节
..第 1小节
......幻灯片标题 1
..第 2 小节
......幻灯片标题 2
......幻灯片标题 2
下一节
......另一个幻灯片标题

在文档中我使用 \paragraph 进入目录的下一级,但是 beamer 似乎不支持它。=(

最好将幻灯片标题自动包含在目录中(有点像这样:Beamer:如何让每一帧都出现在 PDF 目录中?)但是我可以将 \slidetitle 命令改为同时放入 \paragraph 命令。

以下是一些(可能是正交的)工作代码:

\documentclass{beamer}
\usepackage[latin1]{inputenc}
\usetheme{Antibes}

\begin{document}
\section{Section 1}
\subsection{Subsection 1}

\begin{frame}
\frametitle{Outline}
\tableofcontents
\end{frame}

\begin{frame}
\frametitle{Slide 1}
This is some content
\end{frame}

\end{document}

答案1

以下答案\subsubsection在每一帧的开头都会打开一个新的答案:

\documentclass{beamer}
\usetheme{Antibes}

\usepackage{etoolbox}

\makeatletter
\apptocmd{\beamer@@frametitle}{
    \subsubsection{\insertframetitle}
}
\makeatother

\begin{document}

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

    \section{Section 1}
    \subsection{Subsection 1}

    \begin{frame}
        \frametitle{Slide 1}
        This is some content
    \end{frame}

    \begin{frame}
        \frametitle{Slide 2}
        This is some content
    \end{frame} 

\end{document}

在此处输入图片描述

相关内容