欢迎来到天天文库
浏览记录
ID:41484224
大小:90.40 KB
页数:4页
时间:2019-08-25
《LATEX定理引理》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库。
1、后半部分,添加定理引理证明LaTeX中的定理环境(转)(2011-11-2421:32:09)转载▼标签:校园分类:tex在LaTex中需要有关定理、公理、命题、引理、定义等时,常用如下命令123ewtheorem{定理环境名}{标题}[主计数器名]%例如ewtheorem{theorem}{Theorem}[Chapter]意思就是定义一个以Theorem为标题的theorem环境,计数以章节数为主.12begin{theorem}[均值不等式]设$A,B$是两个实数,则$2ABleqA^2+B^2$.end{theorem}的输出
2、为表示为Chapter5的第一个定理.如果需要输出中文,使用定义theorem如下1ewtheorem{theorem}{hspace{2em}定理}[chaptet]同样的代码其输出为另外在{hspace{2em}定理}中还可以输入更改字体的命令来改变定理的字体.前面提到的定理、公理、命题、引理、定义的一套命令可以用这个12345678910111213%Theoremstyleewtheoremstyle{mystyle}{3pt}{3pt}{kaishu}{0cm}{heiti}{}{1em}{}theoremstyle{m
3、ystyle}ewtheorem{definition}{hspace{2em}定义}[chapter]%如果没有章,只有节,把上面的[chapter]改成[section]ewtheorem{theorem}[definition]{hspace{2em}定理}ewtheorem{axiom}[definition]{hspace{2em}公理}ewtheorem{lemma}[definition]{hspace{2em}引理}ewtheorem{proposition}[definition]{hspace{2e
4、m}命题}ewtheorem{corollary}[definition]{hspace{2em}推论}ewtheorem{remark}{hspace{2em}注}[chapter]Latex-定理定义的排版ewtheorem{thm}{Theorem}[section]ewtheorem{prop}{Proposition}[section]以上定理和命题分别计数,如果命题也用定理的计数器,可以这样定义:ewtheorem{prop}[thm]{Proposition}引用:begin{thm}[附加标题,如定理名称,
5、作者]文本end{thm}较短的证明可以用begin{proof}[标题]证明内容。end{proof}如果有[标题]选项,则显示这个标题(斜体),否则自动打印斜体的Proof,并在证明结束时自动生成证毕符号口。如果使用proof命令,则需要在结束时手动加上结束命令qed。当然你可以重定义证毕符号,例如:renewcommand*{qedsymbol}{[证毕]}begin{proof}[证:]证明正文。end{proof}Note:经cohomo提醒(thanks),begin{proof}...end{proof}环境需要
6、usepackage{amsthm}宏包的支持
此文档下载收益归作者所有