突出显示等式中更改的部分

突出显示等式中更改的部分

作为一名物理学家,我经常会遇到一些不方便的表达式,并对其进行操作。其中一个例子如下:


在此处输入图片描述


唯一真正改变的是将\gamma^0移到了方括号中。其他一切都相同。

我想通过突出显示方程式中更改的部分来帮助读者(在本例中是我的导师)。为此,我考虑将更改的部分涂成深蓝色或深绿色。或者,我可以尝试将其他所有内容排版为灰色,以使更改的部分突出。

这样做合理吗?大多数人交作业时,只是在纸上手写公式,中间没有任何文字。任何形式的突出显示真的有帮助吗?还是会分散注意力?

答案1

您可以加载该xcolor包并使用\colorbox宏(请参阅 xcolor 包的用户指南来决定突出显示的颜色):

在此处输入图片描述

\documentclass{article}
\usepackage[dvipsnames]{xcolor} % for 'CornflowerBlue'
\usepackage{newtxtext,newtxmath,amsmath,bm}
\newcommand\cbox[1]{\colorbox{CornflowerBlue}{$#1$}}
\begin{document}
\noindent
Then we expand the exponential as a series and have
\begin{align*}
&= \gamma^0 \sum_{n=0}^\infty \frac{1}{n!} 
   \Bigl[i\frac{\alpha}{2}\gamma^5\Bigr]\gamma^0.
\intertext{With $\gamma^0\gamma^0=\bm{1}_4$, we can wrap every 
single $\gamma^5$ into $\gamma^0$.}
&= \sum_{n=0}^\infty \frac{1}{n!} 
   \Bigl[\cbox{\gamma^0} i\frac{\alpha}{2}\gamma^5\cbox{\gamma^0}\Bigr].
\end{align*}

\end{document}

相关内容