수학에서 방정식을 강조하는 방법은 무엇입니까?

수학에서 방정식을 강조하는 방법은 무엇입니까?

아래와 같이 방정식을 강조 표시하는 방법은 다음과 같습니다.

여기에 이미지 설명을 입력하세요

답변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모드로 설정되어 있습니다.

관련 정보