-1

我在乳胶中有以下代码

\documentclass[letterpaper,12pt,oneside]{book}

\newtheorem{Theorem}{Theorem}[section]
\newtheorem{Proposition}{Proposition}[section]
\newtheorem{Lemma}{Lemma}[section]
\newtheorem{Definition}{Definition}[section]
\newtheorem{Corollary}{Corollary}[section]
\newtheorem{Remark}{Remark}[section]

我希望编号随着我使用的每个定义的新定理而增加。

例如,在第 2 章中有引理 2.1.1、备注 2.1.1 和定理 2.1.1,它们按此顺序出现。相反,我希望它被编号为引理 2.1.1、备注 2.1.2 和定理 2.1.3。

我试图将 [subsection] 放在 \newtheorem 行的末尾,但它不能解决问题。

请问有谁知道如何解决这个问题?

4

1 回答 1

1

而不是使用表格

\newtheorem{Proposition}{Proposition}[section]

您必须使用替代表格

\newtheorem{Proposition}[Theorem]{Proposition}

前者告诉在一个部分中对类似定理的环境进行编号,后者告诉重用已经在 Theorem 环境中定义的计数器。

所以你必须使用第一种形式来声明定理,而第二种形式供其他人重用定理编号。

\documentclass[letterpaper,12pt,oneside]{book}

\newtheorem{Theorem}{Theorem}[section]
\newtheorem{Proposition}[Theorem]{Proposition}
\newtheorem{Lemma}[Theorem]{Lemma}
\newtheorem{Definition}[Theorem]{Definition}
\newtheorem{Corollary}[Theorem]{Corollary}
\newtheorem{Remark}[Theorem]{Remark}

\begin{document}
\chapter{Testing newtheorem numbering}
\section{This is a section}
\begin{Theorem}
  This is a Theorem
\end{Theorem}
\begin{Proposition}
  This is a Proposition
\end{Proposition}
\begin{Lemma}
  This is a Lemma
\end{Lemma}
\begin{Definition}
  This is a Definition
\end{Definition}
\begin{Remark}
  One can remark the correct numbering.
\end{Remark}
\end{document}

在此处输入图像描述

于 2019-04-06T00:43:33.473 回答