如何在乳胶中连续编号定理,定义等等而不为每个开始自己的行?

时间:2015-12-14 18:40:46

标签: latex tex

因为我不是母语人士而且我确信到目前为止没有人理解它我会用简单的语言来解释它... 我正在为我的单身汉写一篇论文,所以它只有大约30页......现在我对这样的命令做了一个定义:

\newtheorem{theo}{Theorem}[chapter]

\newtheorem{lema}{Lemma}[chapter]

\theoremstyle{definition}
\newtheorem{defin}{Definition}[chapter]

\theoremstyle{plain}
\newtheorem{cor}{Corollar}[chapter]

这很有效;但是例如如果我在第2章并使用这样的命令:

\cor
\cor
\defin
\lema

它像这样:

Corollar 2.1 
Corollar 2.2
Definition 2.1
Lemma 2.1

然而,开始自己的编号,定义,引理等编号是没有意义的,因为论文很短,因此它比帮助更令人困惑; 所以我希望它是这样的:

Corollar 2.1 
Corollar 2.2
Definition 2.3
Lemma 2.4

知道怎么做吗?

1 个答案:

答案 0 :(得分:4)

正如there所述,您可以尝试这样做:

\usepackage{amsthm}
\theoremstyle{plain}
\newtheorem{theo}{Theorem}[chapter] % reset theorem numbering per chapter

\theoremstyle{definition}
\newtheorem{defin}[theo]{Definition} % definition numbers are dependent on theorem numbers
\newtheorem{lema}[theo]{Lemma} % same for  Lemmas
\newtheorem{cor}[theo]{Corollar}% same for Corollars