使用 Beamer 枚举定理

使用 Beamer 枚举定理

\newtheorem如何使用amsthm 包在 beamer 中枚举定理?

答案1

您需要\setbeamertemplate{theorems}[numbered]在序言中添加:

在此处输入图片描述

以下是完整的最小工作示例

  \documentclass{beamer}
  \setbeamertemplate{theorems}[numbered]

  \begin{document}

    \begin{frame}
    \begin{theorem}
    This is the beginning of Theorem 1.
    \end{theorem}
    \end{frame}

  \end{document}

相关内容