停用“定义”环境主体中的斜体文本

停用“定义”环境主体中的斜体文本

我通过以下方式定义了一个新定理

\newtheorem{def}{definition}

但是文本有斜体字体,我不想要那样。我怎样才能停用斜体字体?

答案1

我假设你正在使用与定理相关的包,例如amsthm。如果是这种情况,只需发出指令

\theoremstyle{definition}

提前完成指令

\newtheorem{defn}{Definition}

完整的 MWE:

\documentclass{article}
\usepackage{amsthm,lipsum}
\theoremstyle{definition}
\newtheorem{defn}{Definition}
\begin{document}
\begin{defn}[Lipsum]
\lipsum*[2] % filler text
\end{defn}
\end{document}

相关内容