定理环境中的枚举

定理环境中的枚举

我对一个格式问题感到困惑。我被要求将枚举在定理环境中给出的斜体数字更改为非斜体数字。如何自定义枚举,使其不采用定理环境的斜体格式?抱歉我的英语不好。提前谢谢。

答案1

enumitem包裹可以很容易地自定义列表,所以我会使用它。下面的代码仅适用于单个列表,但您可以使用\setlist它来使其成为全局列表。请参阅文档了解详情。

\documentclass{article}

\usepackage{amsthm,enumitem}
\newtheorem{theorem}{Theorem}

\begin{document}

\begin{theorem}
    The following are equivalent:
    \begin{enumerate}[font=\normalfont]
        \item $1 + 1$
        \item $2$
    \end{enumerate}
\end{theorem}

\end{document}

上述代码的输出

相关内容