Latex实用例子之Definition,Theorem,Proposition,Lemma等
(2013-12-12 08:20:51)
标签:
latex定义定理注释 |
分类: 工:编程 |
由于Latex强大的数学写作功能,那么写定义、定理、引理、命题、推论、猜想、例子、评论、注等等就显得非常实用。现给出一个经重新定义后的写法,供参考
例子如下:
\documentclass[12pt]{article}
\usepackage{amsthm}
\theoremstyle{plain}
\newtheorem{thm}{Theorem}[section]
\newtheorem{lem}[thm]{Lemma}
\newtheorem{prop}[thm]{Proposition}
\newtheorem*{cor}{Corollary}
\theoremstyle{definition}
\newtheorem{defn}{Definition}[section]
\newtheorem{conj}{Conjecture}[section]
\newtheorem{exmp}{Example}[section]
\theoremstyle{remark}
\newtheorem*{rem}{Remark}
\newtheorem*{note}{Note}
\begin{document}
\end{document}

加载中…