定理/定义/引理问题 — Beamer 中的编号

定理/定义/引理问题 — Beamer 中的编号

我正在尝试对定理/定义/引理等进行编号,但在编号方面遇到了一些问题。

我想要 Beamer(演示文稿)中的定理、命题、推论、定义和示例如下:

1 功能(部分)

1.1 基础知识(小节)

定义1.1.1。

定理 1.1.1。

定理 1.1.2。

例 1.1.1.

1.2 一些结果(小节)

定义1.2.1。

定理 1.2.1。

定理 1.2.2。

例 1.2.1。

答案1

您需要对章节内的子章节和章节内的定理进行编号,以实现您的目标。

\numberwithin{subsection}{section}
\numberwithin{theorem}{subsection}

另外,你需要声明

\setbeamertemplate{theorems}[numbered]

否则它们根本没有编号。

梅威瑟:

\documentclass{beamer}

\setbeamertemplate{theorems}[numbered]
\numberwithin{subsection}{section}
\numberwithin{theorem}{subsection}

\begin{document}
\section{Functions}
\subsection{Basics}
\begin{frame}
\frametitle{A Theorem on Infinite Sets}
\begin{theorem}
There exists an infinite set.
\end{theorem}
\begin{proof}
This follows from the axiom of infinity.
\end{proof}
\begin{example}[Natural Numbers]
The set of natural numbers is infinite.
\end{example}
\end{frame}
\end{document} 

在此处输入图片描述

请注意,我并没有改变所有类定理环境共享相同计数器的事实。

相关内容