案例环境中的颜色

案例环境中的颜色

如何改变下面代码中 {(case) 的颜色?

\begin{equation}\label{48ch}
 \begin{cases}

  \sigma_1>0  \\
  \sigma_2<0 \\

   \end{cases} 
  \end{equation}

答案1

\documentclass{report}
\usepackage{mathtools}
\usepackage{xcolor}

\begin{document}
    \begin{equation}\label{48ch}
    {\color{green}
\begin{cases}
    {\color{red}\sigma_1}>{\color{yellow}0}  \\[1ex]
    {\color{blue}\sigma_2}<{\color{purple}0}    
\end{cases}
}
  \end{equation}
\end{document}

在此处输入图片描述

答案2

如果您只想要彩色的大括号,您可以加载 empheq并使用aligned环境:

\documentclass{article}
\usepackage{empheq}

\usepackage{xcolor}

\begin{document}
\begin{empheq}[left =\color{red}\empheqlbrace]{equation}\label{48ch}
  \begin{aligned}
      & \sigma_1 > 0 \\[1ex]
      & \sigma_2 < 0
  \end{aligned}
\end{empheq}

\end{document} 

在此处输入图片描述

答案3

不清楚你喜欢什么颜色。也许是像这样?

在此处输入图片描述

\documentclass{article}
\usepackage{mathtools}

\usepackage{xcolor}

\begin{document}
    \begin{equation}\label{48ch}
{\color{red}
\begin{cases}
    \sigma_1>0  \\[1ex]
    \sigma_2<0    
\end{cases}
}
  \end{equation}
\end{document}

相关内容