答案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
设置。