发布时间:2010-11-21 20:36:46
文章类别:数学公式
原文地址:http://blog.sina.com.cn/s/blog_5e16f1770100n333.html

QQ群:91940767/145316219/141877998/80300084/194770436
淘宝店:http://latexstudio.taobao.com
技巧续篇:http://latexstudio.net/
常见数学公式问题集下载

【问题描述】
中文编译的数学文章,请问如何在文章的“定义”“定理”前空两格(看一般的中文数学教材都是空两格的)。

我在编译的时候是直接先定义
\def\bt{\begin{theorem}}
\def\et{\end{theorem}}
然后后面应用的时候都是直接引用
\bt
\et
这样的话编译出来都是直接顶格了的。想请问高手如何使它空两格?谢谢!
问题选自:http://bbs.ctex.org/viewthread.php?tid=48589

【解决方案】
ntheorem中有个命令\theoremindent 这是设置定理缩进的,但是不仅首行缩进了,其他行也缩进了。
上述问题,可以用如下定义来实现:
\newtheorem{Theorem}{\hskip 2em 定理}[chapter]
\newtheorem{Lemma}[Theorem]{\hskip 2em 引理}
\newtheorem{Corollary}[Theorem]{\hskip 2em 推论}
\newtheorem{Proposition}[Theorem]{\hskip 2em 命题}
\newtheorem{Definition}[Theorem]{\hskip 2em 定义}
\newtheorem{Example}[Theorem]{\hskip 2em 例}



点赞(5)

评论列表 共有 0 条评论

暂无评论
立即
投稿

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部