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