📅  最后修改于: 2023-12-03 15:13:13.911000             🧑  作者: Mango
在LaTeX中,\underbrace
命令用于在公式中添加下括号,且可在下括号内加注释,方便表达式的解释。常用于线性代数中的矩阵等公式的表达。
使用\underbrace
命令的格式如下:
\underbrace{x+y}_{\text{text}}
其中,x+y
是要添加下括号的表达式,\text
是下括号内的注释文本。
示例代码:
\[
\begin{pmatrix}
1 & 2 & 3 & 4 \\
5 & 6 & 7 & 8 \\
9 & 10 & 11 & 12
\end{pmatrix}
=
\underbrace{\begin{pmatrix}
1 & 2 \\
5 & 6 \\
9 & 10
\end{pmatrix}}_{A}
\cdot
\underbrace{\begin{pmatrix}
3 & 4 \\
7 & 8 \\
11 & 12 \\
13 & 14
\end{pmatrix}}_{B}
\]
示例效果:
\underbrace{\begin{pmatrix} 1 & 2 \ 5 & 6 \ 9 & 10 \end{pmatrix}}{A} \cdot \underbrace{\begin{pmatrix} 3 & 4 \ 7 & 8 \ 11 & 12 \ 13 & 14 \end{pmatrix}}{B} $$
以上就是关于\underbrace
命令的介绍,希望对您有所帮助。