如何取消粗体“定理”、“推论”和“引理”标题

如何取消粗体“定理”、“推论”和“引理”标题

我正在使用文章文档类,我需要“取消粗体”所有定理、推论、引理和注释的标题。我该怎么做?有什么帮助吗?

答案1

LaTeX 标准\newtheorem宏定义的定理总是有一个粗体标题,因为它们可以展开为类似

\trivlist \item[\hskip\labelsep {\bfseries <theorem name & counter>}]

您可以使用amsthm或等包来自ntheorem定义类定理环境。或者,您可以修补宏\@begintheorem\@opargbegintheorem(后者用于带有可选参数的定理),它们使用标准格式定义的类定理环境调用:

\usepackage{xpatch}
\makeatletter
\xpatchcmd{\@begintheorem}{\bfseries}{}{}{}
\xpatchcmd{\@opargbegintheorem}{\bfseries}{}{}{}
\makeatother

相关内容