如何使用带右牙套的下牙套?

How do you use an underbrace with a right brace?

这是我拼凑的,但右大括号不应包含下大括号。他们应该看起来像兄弟姐妹,可以这么说。有办法吗?

\(

    \left.
    \underbrace{
    \left[

            \begin{matrix}
                a_{11}  & a_{12}  & a_{13} & \cdots & a_{1n} \
                a_{21}  & a_{22}  & a_{23} & \cdots & a_{2n} \
                a_{31}  & a_{32}  & a_{33} & \cdots & a_{3n} \
                \vdots  & \vdots  & \vdots &        & \vdots \
                a_{m1}  & a_{m2}  & a_{m3} & \cdots & a_{mn}
            \end{matrix}

    \right]    
    }_{\text{ n columns}}
    \right\} \text{m rows}

\)

这是为您提供的完整技巧。

<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.3/MathJax.js?config=TeX-AMS_HTML"></script>

\(
    \kern .4em
    \underbrace{
      \kern-.4em
      \left.
      \left[
        \begin{matrix}
            a_{11}  & a_{12}  & a_{13} & \cdots & a_{1n} \
            a_{21}  & a_{22}  & a_{23} & \cdots & a_{2n} \
            a_{31}  & a_{32}  & a_{33} & \cdots & a_{3n} \
            \vdots  & \vdots  & \vdots &        & \vdots \
            a_{m1}  & a_{m2}  & a_{m3} & \cdots & a_{mn}
        \end{matrix}
      \right]    
      \right\} m\text{ rows}
      \Rule{0em}{0em}{3.6em}
      \kern -4.5em
    }_{\textstyle n \text{ columns}}
    \kern 4.5em
\)

必须手动调整字距。如果你打算在实际的 LaTeX 中使用它,\Rule 是 non-standard,并且必须用相应的 \rule 替换。或者它可以完全被排除在外(因为它只是在矩阵和支撑之间的一点 space)。