如何突顯數學中的方程式?

如何突顯數學中的方程式?

我如何突出顯示如下所示的方程式:

在此輸入影像描述

答案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>a裡面\colorbox設定的是文字模式。

相關內容