如何在所有数学模式中添加颜色?

如何在所有数学模式中添加颜色?

我想将所有数学模式都设置为某种颜色,例如红色。但我不知道该怎么做。在这个网站上我找到了如何做到这一点,但在 Beamer 中,我也想在文章、书籍等中做到这一点。

谢谢你的时间。

答案1

这里有一种方法:

\documentclass{article}

\usepackage{xcolor}
\usepackage{amssymb}

\makeatletter
\renewcommand{\displaymath}{\color{red}\[}
\renewcommand{\enddisplaymath}{\]\@ignoretrue\color{black}}

\renewcommand{\(}{\relax\ifmmode\@badmath\else\color{blue}$\fi}
\renewcommand{\)}{\relax\ifmmode\ifinner$\color{black}\else\@badmath\fi\else \@badmath\fi}

\catcode`\$=13
\def${\ifmmode\)\else\(\fi}
\makeatother

\begin{document}

Una funzione $f:U \longrightarrow \mathbb{C}, U\){} aperto di $\mathbb{C}${} si dice  \textbf{olomorfa} se \`{e} \(\mathbb{C}\)-derivabile in ogni punto di \(U\), ovvero se \(\forall\) \(z_0 \in U\ \exists\){} finito
\begin{displaymath}
\lim_{h \to 0}\frac{f(z_0+h)-f(z_0)}{h}=\frac{\partial f}{\partial z_0}, h\in \mathbb{C}.
\end{displaymath}
\(f\){} \textbf{intera} se olomorfa su \(U=\mathbb{C}\).

\end{document}

但是,此解决方案对于内联 来说有点不切实际math mode。我建议仅对 使用此技巧display math mode,并在内联时使用约定的额外命令。使用\everymath和执行此操作\everydisplay是不安全的,如下所述:\everymath和作者颜色

相关内容