如何获得方程数的独立增量

如何获得方程数的独立增量

我希望方程计数器的增量与其他增量无关。

我的设置:

定理 1.1

公式(1.2)

推论1.3

公式(1.4)

引理 1.5

引理 1.6

命题 1.7

公式(1.8)

我真正想要的是:

定理 1.1

公式(1.1)

推论1.2

公式(1.2)

引理 1.3

引理 1.4

命题 1.5

公式(1.3)

在序言中我已经说过:

\documentclass[11pt,a4paper,reqno]{amsart}
\usepackage{amssymb}
\usepackage{bm}
\numberwithin{equation}{section}
\usepackage{mathabx}
\usepackage{mathtools}

\theoremstyle{plain}
\newtheorem{theorem}[equation]{Theorem}
\newtheorem{proposition}[equation]{Proposition}
\newtheorem{lemma}[equation]{Lemma}
\newtheorem{corollary}[equation]{Corollary}
\newtheorem{conjecture}[equation]{Conjecture}
\newtheorem{principle}[equation]{Principle}
\newtheorem{claim}[equation]{Claim}

\theoremstyle{definition}
\newtheorem{definition}[equation]{Definition}
\newtheorem{remark}[equation]{Remark}
\newtheorem{example}[equation]{Example}

任何帮助将非常感激。

答案1

首先,改变

\newtheorem{theorem}[equation]{Theorem}

\newtheorem{theorem}{Theorem}
\numberwithin{theorem}{section}

或者更简洁地说,

\newtheorem{theorem}{Theorem}[section] % Thanks, @Bernard! 

二、改变

\newtheorem{proposition}[equation]{Proposition}
\newtheorem{lemma}[equation]{Lemma}
\newtheorem{corollary}[equation]{Corollary}
\newtheorem{conjecture}[equation]{Conjecture}
\newtheorem{principle}[equation]{Principle}
\newtheorem{claim}[equation]{Claim}
\theoremstyle{definition}
\newtheorem{definition}[equation]{Definition}
\newtheorem{remark}[equation]{Remark}
\newtheorem{example}[equation]{Example}

\newtheorem{proposition}[theorem]{Proposition}
\newtheorem{lemma}[theorem]{Lemma}
\newtheorem{corollary}[theorem]{Corollary}
\newtheorem{conjecture}[theorem]{Conjecture}
\newtheorem{principle}[theorem]{Principle}
\newtheorem{claim}[theorem]{Claim}
\theoremstyle{definition}
\newtheorem{definition}[theorem]{Definition}
\newtheorem{remark}[theorem]{Remark}
\newtheorem{example}[theorem]{Example}

相关内容