如何突出显示数学中的方程式?

如何突出显示数学中的方程式?

我如何突出显示如下所示的等式:

在此处输入图片描述

答案1

你可以尝试调整间距:

在此处输入图片描述

\documentclass{article}

\usepackage{xcolor,amsmath}
\DeclareMathOperator{\suc}{Suc}

\begin{document}

By applying rule~2 (\texttt{apply\_rupple\_step}), the left hand side of the step-case is rippled to:
\[
  \colorbox{orange}{\strut
    case $b'$ of $0 \Rightarrow (\suc a) \mid (\suc z) \Rightarrow \suc(\colorbox{white}{$\max a \lfloor z \rfloor$})$%
  }
  {} = \max \lfloor b' \rfloor
  \colorbox{orange}{\strut
    $\suc \colorbox{white}{a}$%
  }
\]

\end{document}

最终,您只需使用它\colorbox{<color>}{<stuff>}来突出显示内容即可。我添加了\strut以确保生成的彩色框的基线高度一致,以及在必要时使用文本。请注意,在文本模式<stuff>\colorbox设置。

相关内容