如何让乳胶文档以与定理/引理/推论相同的粗体字体呈现示例?
答案1
您可以根据需要定义一般语句;没有预定义的类似定理的环境,因为人们往往对此有不同的期望。
\documentclass{article}
\usepackage{amsthm} % for \theoremstyle and proof
\newtheorem{thm}{Theorem}[section] % theorems will be numbered according to section
\newtheorem{lem}[thm]{Lemma} % lemmas share the counter with theorems
\newtheorem{cor}[thm]{Corollary} % ditto
\theoremstyle{definition} % body text will be upright
\newtheorem{defn}[thm]{Definition}
\newtheorem{exa}[thm]{Example}
\begin{document}
\section{A title}
\begin{lem}
This is a lemma.
\end{lem}
\begin{thm}
This is a theorem.
\end{thm}
\begin{proof}
Here's its proof.
\end{proof}
\begin{exa}
An example to illustrate the theorem.
\end{exa}
\end{document}
答案2
有很多选择。其中一个不错的选择是 amsthm。下面是一个例子。
\documentclass{minimal}
\usepackage{amsthm}
\theoremstyle{plain}
\newtheorem{thm}{Theorem}
\newtheorem{lem}{Lemma}
\newtheorem{cor}{Corollary}
\newtheorem{exm}{Example}
\usepackage{lipsum}
\begin{document}
\lipsum[1]
\begin{thm} \lipsum[2] \end{thm}
\begin{lem} \lipsum[3] \end{lem}
\begin{cor} \lipsum[4] \end{cor}
\begin{exm} \lipsum[5] \end{exm}
\lipsum[6]
\end{document}
更多软件包请访问 CTANhttp://www.ctan.org/topic/maths-theorem。