\documentclass[11pt]{article}
\usepackage{amsmath, amsthm, amssymb,amsfonts}
\begin{document}
$A=\begin{pmatrix}
1 && 1 && 1 && 0 && 0 && 0 && 0 && 0 && 0 \\
0 && 0 && 1 && 1 && 1 && 0 && 0 && 0 && 0 \\
0 && 1 && 0 && 1 && 0 && 1 && 1 && 0 && 0 \\
0 && 1 && 0 && 0 && 1 && 0 && 0 && 1 && 1 \\
0 && 0 && 0 && 0 && 0 && 1 && 0 && 0 && 0 \\
0 && 0 && 0 && 0 && 0 && 0 && 0 && 1 && 0 \\
1 && 0 && 0 && 0 && 0 && 0 && 1 && 0 && 0 \\
1 && 0 && 0 && 0 && 0 && 0 && 0 && 0 && 1 \\
1 && 0 && 0 && 0 && 0 && 0 && 0 && 0 && 0 \\
\end{pmatrix}$
\end{document}
答案1
矩阵中的列数超过默认值(10)。可以通过添加以下方法将其扩大到例如 20 列
\setcounter{MaxMatrixCols}{20}
在序言中。为什么需要空列?