无法突出显示带有灵魂包的方程式

无法突出显示带有灵魂包的方程式

\hl我无法从包中突出显示一个等式soul

有没有办法突出显示等式?

答案1

尝试这个:

在此处输入图片描述

代码(使用包empheq):

\documentclass{article} % or some other suitable document class
\usepackage{empheq,xcolor}
\newcommand*\mybox[1]{%
    \colorbox{cyan!30}{\hspace{1em}#1\hspace{1em}}}
\begin{document}
    \begin{empheq}[box=\mybox]{align}
        ax^2+bx+c=0\\
        x=\frac{-b \pm \sqrt{b^2-4ac}}{2a}
    \end{empheq}
    
    \begin{empheq}[box=\mybox]{align*}
        ax^2+bx+c=0\\
        x=\frac{-b \pm \sqrt{b^2-4ac}}{2a}
    \end{empheq}
\end{document}

相关内容