在 Beamer TOC 中的各部分之间添加日期

在 Beamer TOC 中的各部分之间添加日期

我将在两天内进行演讲。我当前的代码如下所示:

\documentclass[12pt,aspectratio=169]{beamer}

\AtBeginSection[]
{
    \begin{frame}
        \frametitle{Test}
        \tableofcontents[currentsection,subsectionstyle=shaded]
    \end{frame}
}

\AtBeginSubsection[]
{
    \begin{frame}
        \frametitle{Test}
        \tableofcontents[currentsection,currentsubsection]
    \end{frame}
}

\title{Test}

\begin{document}

\begin{frame}[t,plain]
    \titlepage
\end{frame}

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

% Day 1

\section{1}

\section{2}

% Day 2

\section{3}

\section{4}

\end{document}

有什么方法可以在目录中显示日期吗?例如:

第 1 天:

  • 第 1 部分
  • 第 2 部分

第二天:

  • 第 3 部分
  • 第 4 部分

答案1

beamer软件包的当前文档在第 10.3 节中解释了如何使用\parts,您也可以在这里使用它(另请参阅这个答案了解更多信息):

\documentclass[12pt,aspectratio=169]{beamer}

\AtBeginSection[]
{
    \begin{frame}
        \frametitle{Test}
        \tableofcontents[currentsection,subsectionstyle=shaded]
    \end{frame}
}

\AtBeginSubsection[]
{
    \begin{frame}
        \frametitle{Test}
        \tableofcontents[currentsection,currentsubsection]
    \end{frame}
}

\title{Test}

\begin{document}

\begin{frame}[t,plain]
    \titlepage
\end{frame}

\begin{frame}{TOC}
    Day 1:
    \tableofcontents[part=1]
    Day 2:
    \tableofcontents[part=2]
\end{frame}

\part{Day 1}

\section{1}

\section{2}

\part{Day 2}

\section{3}

\section{4}

\end{document}

在此处输入图片描述

相关内容