排版带对角矩阵

排版带对角矩阵

有没有办法在 LaTeX 中排版以下矩阵?

在此处输入图片描述

在我的尝试中,我得到了以下结果:

\begin{equation}
C=\left[\begin{array}{cccccccccc}
1 & 1  & 1 & 0 & \ldots & \ldots & -1 & -1 & -1\\
1 & 1  & 1 & 1 & \ldots & \ldots & \ldots & -1 & -1\\
1 & 1 & \ldots   & 1 & 1 & \ldots & \ldots & 0 & -1\\
0 & 1 & \ldots & \ldots  & 1 & 1 & \ldots & 0 & 0\\
\vdots & \vdots & \vdots & \vdots & \vdots & \vdots & \vdots & \vdots & \vdots \\
\hdotsfor{9}\cr\vdots & \vdots & \vdots & \vdots & \vdots & \vdots & \vdots &\vdots &\vdots  \\
-1 &0 & \ldots & \ldots & 0 & 1 & 1 & 1 & 1\\
-1 & -1 & 0 & \ldots & \ldots & 0 & 1 & 1 & 1\\
-1 & -1 & -1 & \ldots & \ldots & \ldots & 0 & 1 & 1
\end{array} \right]
\end{equation}

想知道如何添加花括号。

答案1

您可以将此示例作为预览。

在此处输入图片描述

\documentclass{article}
\usepackage{mathtools}

\begin{document}

\begin{equation*}
\underbrace{%
\begin{bmatrix}
    1  & 1 & 0 & 0 & 0 & 3& 0 \\
   1 & 1 & 1 & 3 & 0 & 0 & 0 \\
   1 & 1 & 4 & 4 & 3 & 0 & 0 \\
    0 & -1 & 4 & 3& 3 & -1 & 0 \\
    0 & 0 & 4 & 4 & 3 & 16 & -1 \\
    0 & 0 & 4 & & 4 & 0 & 6 \\
    0 & 0 & 0 & 0 & 0 & 2 & 4 \\
\end{bmatrix}
}_{\mathrm{bla\,\,bla\,\, bla}}
\end{equation*}

\end{document}

或查看链接矩阵上的括号

相关内容