作者roloc (回到原点)
看板LaTeX
标题Re: 关於Theorem的设定
时间Fri Nov 7 00:02:32 2008
※ 引述《blueslim (paranoia)》之铭言:
: 我的文稿环境是定为:
: \documentclass{article}
: 目的是要做一份lecture note
: 一般来说系统会自动帮我们把Theorem编号
: 比如Theorem 1.这样
: 那如果要显示出:
: Theorem 4.3 (Levy continuity theorem) .....
: 其中红色和黄色的部分是我要的
: 那麽在文稿环境该如何做调整呢?
: 再次强者恳请帮忙 <(_ _)>
Try it!
\documentclass{article}
\newtheorem{thm}{Theorem}[section]
\begin{document}
\setcounter{section}{4}
\setcounter{thm}{2}
\begin{thm}[Levy continuity theorem]
balabala...
\end{thm}
\end{document}
--
※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 218.187.14.31
1F:推 blueslim:太赞了! 感谢!!! 11/07 01:20