仅更改默认 amsthm 样式的颜色

仅更改默认 amsthm 样式的颜色

正如标题所示,我希望改变默认 amsthm 样式(标题)的颜色,仅此而已

有没有办法做到这一点,而不需要创建一堆新的定理样式、复制粘贴标准设置并添加颜色参数?

提前致谢。

答案1

方法如下thmtools

\documentclass{article}
\usepackage[svgnames]{xcolor} 

\usepackage{amsthm}
\usepackage{thmtools} %

\theoremstyle{definition}
\declaretheorem[numberwithin=section, title=\color{Chartreuse}Definition]{definition}

\theoremstyle{plain}
\declaretheorem[sharenumber=definition, title=\color{Tomato}Proposition]{proposition}


\begin{document}

\section{Elementary Arithmetic}

    \begin{definition}
    A natural number $p$ is a \emph{prime number} if it has exactly two divisors. 
    \end{definition}
    \begin{proposition}[Alfred Jarry]
    God is the shortest path from $0$ to $\infty$. 
    \end{proposition}

\end{document}

在此处输入图片描述

相关内容