한 쌍의 달러 기호 안에있는 모든 표현을 원하는 색상으로 어떻게 넣을 수 있습니까? [복제]

Aug 17 2020

내 텍스 문서에서 나는 색상 (예 : 두 개의 달러 기호 내의 모든 표현하고 싶은 $e^{i\pi}$, $\log x$달러 기호 (예 : 한 쌍의 내 등), $$e^{i\pi}+1=0$$,) 내에서 \begin{eqnarray}...\end{eqnarray}원하는 색상 (예를 들어, 노란색) 그것을마다하지 않고 . 이를 달성하기위한 명령이 있습니까?

답변

2 Bernard Aug 16 2020 at 23:54

쉽게 \everymath. 등식 번호 색상을 변경하지 않습니다 . 에서 \newtagform명령을 사용하여 쉽게 변경할 수 있습니다 mathtools.

\documentclass[12pt]{article}
\usepackage{amsmath, bm}
\usepackage[svgnames]{xcolor}
\colorlet{mathcolour}{red}
\everymath{\color{mathcolour}}

\begin{document}

Some text. Some more text. $T_i$ \quad $\mathbf e^{i\pi}$

\colorlet{mathcolour}{DeepSkyBlue}
\begin{align} a & = \bm{b} \\ c & = \bm{d} \end{align}

\end{document} 

jsbibra Aug 16 2020 at 23:23

수학 모드 채색

\documentclass{article}
\usepackage{xcolor}
\begin{document}
$T_i$

${\color{red}T_{\color{black}i}}$
${\color{blue}e^{i\pi}}$
\end{document}

편집하다

\documentclass{article}
\usepackage{xcolor}
\everymath{\color{red}}
\begin{document}
    $T_i$
    
    ${T_{i}}$
    ${\color{blue}e^{i\pi}}$
\end{document}