投影机中的 Sectionnumber

投影机中的 Sectionnumber

幸运的是,我被允许在教学课程中使用 LaTeX 代替 PowerPoint,但我必须重新创建 PowerPoint 幻灯片的原始设计。

现在我需要将部分框架上的部分编号放在框架的右侧(见下图)。

在此处输入图片描述

我怎样才能在 beamer 中实现这一点(背景部分文本的位置没有问题 - 我只是不知道如何移动部分编号)?

答案1

您可以通过 访问部分编号\thesection。它应该可以像使用部分名称一样定位,但没有最小工作示例我只能猜测……

\documentclass{beamer}

\AtBeginSection{
    \begin{frame}
        \thesection
    \end{frame}

}

\begin{document}

    \section{sec1}

    \begin{frame}
        test
    \end{frame}

    \section{sec2}

    \begin{frame}
        test
    \end{frame}

\end{document}

相关内容