为公式添加颜色
\usepackage{empheq}
\[
{\color{red}\sin x}{\color{blue}\cos x}
\]
给公式加框
%boxed只能用于equation aligned,不能够用于多行公式
\begin{empheq}[box=\fbox]{equation}
f(x)=\sin x
\end{empheq}
\begin{empheq}[box=\fbox]{align}
f(x)&=\sin x\\
g(x)&=\cos x
\end{empheq}
\begin{empheq}[box=\fbox]{align}
f(x)&=\sin x\\
g(x)&=\cos x
\end{empheq}
为公式加底色
\begin{empheq}[innerbox=\colorbox{yellow!60}]{equation}
f(x)=\sin x
\end{empheq}
\begin{empheq}[innerbox={\colorbox[rgb]{0.8,0.8,1}}]{equation}
f(x)=\sin x
\end{empheq}
参考
https://blog.csdn.net/little_ox/article/details/105019980