如何改变 \underbrace{.} 的颜色

如何改变 \underbrace{.} 的颜色

我只需要更改以下帖子中底部支撑的颜色。

水平花括号

上述链接中的 MWE 是:

\overbrace{your-formula}^\text{your comment} 
\underbrace{your-formula}_\text{your comment} 

示例摘自维基百科

\[
  z = \overbrace{
    \underbrace{x}_\text{real} +
    \underbrace{iy}_\text{imaginary}
   }^\text{complex number}
 \]

他们的结果: 在此处输入图片描述

答案1

color有帮助。颜色的范围受 TeX 组限制。花括号的副作用是在数学模式下创建子公式,这会影响水平间距,因此\begingroup\endgroup的使用没有这种副作用:

\documentclass{article}
\usepackage{color}
\usepackage{amsmath}

\begin{document}
\[
    z = \overbrace{
    \begingroup
      \color{red}
      \underbrace{\color{black}x}_\text{\color{black}real}
    \endgroup
    +
    \begingroup
      \color{blue}
      \underbrace{\color{black}iy}_\text{\color{black}imaginary}
    \endgroup
   }^\text{complex number}
\]
\end{document}

结果

相关内容