我正在写一份数学报告。其中我需要包含一些例子,例如,求解方程。是否有一个包可以提供一个良好的编写例子的环境?
答案1
一种可能性是添加amsthm
包,然后添加类似以下内容:
\newtheorem{example}{Example}
用于示例环境的定义。您还可以调整计数器等。
这是一个简单的例子:
\documentclass{article}
\usepackage{amsthm}
\newtheorem{example}{Example}
\begin{document}
Here is the first example:
\begin{example}
First example
\end{example}
and here's the second
\begin{example}
last example
\end{example}
\end{document}