]> gitweb.michael.orlitzky.com - mjotex.git/blob - mjo-theorem.tex
Wrap all mjotex files in conditionals to prevent double-loading.
[mjotex.git] / mjo-theorem.tex
1 %
2 % The standard corollary, definition, theorem, etc. that we all define
3 % in every single paper.
4 %
5 \ifx\havemjotheorem\undefined
6 \def\havemjotheorem{1}
7
8
9 \usepackage{amsthm}
10
11 \theoremstyle{plain}
12 \newtheorem{corollary}{Corollary}
13 \newtheorem{exercise}{Exercise}
14 \newtheorem{lemma}{Lemma}
15 \newtheorem{proposition}{Proposition}
16 \newtheorem{theorem}{Theorem}
17
18 \theoremstyle{definition}
19 \newtheorem{definition}{Definition}
20 \newtheorem{example}{Example}
21
22 \theoremstyle{remark}
23 \newtheorem{remark}{Remark}
24
25
26 \fi