如何在`NiceMatrix`中绘制下括号?

如何在`NiceMatrix`中绘制下括号?

我想为方程的某些部分绘制下括号,这可以很容易地用\underbrace

在此处输入图片描述

仔细查看上面的图片,可以发现下括号没有正确对齐。另外,最好先写出方程式,然后再写出下括号的内容。因此,我使用了array包,它也能产生非常相似的结果

在此处输入图片描述

我的问题NiceMatrix

  1. 如何在方程的某些部分下绘制粗水平下括号?
  2. 通过将重要方程式放在可自定义颜色、宽度以及与主要内容的分离的框中来强调重要方程式的最简单方法是什么?

我的MWE

\documentclass[aspectratio=169, xcolor={x11names}, t, handout]{beamer}

\usetheme{Dresden}

\usepackage{mathtools}

\newcommand{\underbraceX}[2]{\underbrace{\color{\colorMathTextDisplayed}\medspace #1 \medspace}_{
    \parbox[c]{\widthof{$\medspace #1 \medspace$}}{\hspace*{\fill} #2 \hspace*{\fill}}
                                                                }
                            }

\usefonttheme{professionalfonts}
\usepackage[defaultmathsizes, subdued, italic, LGRgreek, symbolre]{mathastext}

\setbeamercolor{math text inlined}{fg=SpringGreen3}
\newcommand{\colorInlinedMath}{\everymath{\color{SpringGreen3}}\sisetup{color=SpringGreen3}}
\newcommand{\colorMathTextDisplayed}{black}

\usepackage{empheq}

\usepackage{nicematrix}

\usepackage{etoolbox}
\AtBeginEnvironment{equation}{\setbeamercolor{math text inlined}{fg=black}}
\AtBeginEnvironment{empheq}{\setbeamercolor{math text inlined}{fg=black}}
\AtEndEnvironment{array}{\\[-4.2mm]}

\usepackage{tikz}
\usetikzlibrary{decorations.pathreplacing}

\usepackage{adjustbox}
\newcommand{\adjustboxMath}[1]{\adjustbox{cframe=black 0.141mm 1.06mm 0mm}{$#1$}} % (good values cframe=black 0.141mm 1.06mm 0mm)

\usepackage[x11names]{xcolor}

\begin{document}
        
\begin{frame}
    
    \begin{empheq}[box=\adjustboxMath]{equation}
        \underbraceX{\qquad Z\angle\theta_{z} \qquad}{Polar Form} = \underbraceX{\qquad\: R \pm j X \qquad\:}{Rectangular Form}
    \end{empheq}
    
    \begin{equation}
    \setlength{\arraycolsep}{0mm}
    \adjustboxMath{
        \begin{array}{c >{{}}c<{{}} c}
            Z\angle\theta_{z} & = & R \pm j X
        \\[-4.2mm]
            \underbraceX{\qquad \hphantom{Z\angle\theta_{z}} \qquad}{Polar Form} & \mathrel{\phantom{=}} & \underbraceX{\qquad \hphantom{R \pm j X} \qquad}{Rectangular Form}
        \end{array}
    }
    \end{equation}

\end{frame}
    
\end{document}

相关内容