我想知道是否有一个命令可以在序言中使用,以我选择的颜色突出显示给定类型的所有元素。我特别想突出显示所有数学公式。如果这不可能,我也希望有一个命令可以为所有公式(或给定类型的元素)着色。
我不希望每个元素都单独突出显示,除非有自动的方法可以做到这一点。
\documentclass{article}
% This option of this fictitious package highlights all formulae in yellow
\usepackage[formula=yellow]{highlighter}
% This unused command would have highlighted all numbers in cyan.
%\usepackage[number=cyan]{highlighter}
\begin{document}
This is a formula that will be highlighted:
$$(x+y)^2 &= x^2 + 2xy + y^2$$
Also the following formula will be highlighted:
\begin{align*}
(x+y)^2 &= x^2 + y^2
\end{align*}
And so will be $x^2 + y^2 = (x+y)^2$, because all formulas will be highlighted.
\end{document}