答案1
我们可以建立一个类似定理的环境,shortthm
如下例所示,它以“定理。”并将其内容置于强调(斜体)模式。
\documentclass[12pt,letterpaper]{article}
\newenvironment{shortthm}{\textbf{Theorem.}\space\em}{\par}
\begin{document}
\begin{enumerate}
\item \begin{shortthm}
Pythagoras showed that $a^2 + b^2 = c^2$.
\end{shortthm}
\item \begin{shortthm}
Euler showed that $e^{i\pi}-1=0$.
\end{shortthm}
\end{enumerate}
\end{document}