我可以运行 8 x 10 矩阵,但不能运行 9 x 11 矩阵
\documentclass[10pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\begin{document}
This runs
$\begin{matrix}
x_1 & x_2 & x_3 & & & & & & & \\
& x_2 & x_3 & x_4 & & & & & & \\
& & x_3 & c_x & x_5 & & & & & \\
& & & x_4 & x_5 & x_6 & & & & \\
& & & & x_5 & x_6 & x_7 & & & \\
& & & & & x_6 & x_7 & x_8 & & \\
& & & & & & x_7 & x_8 & x_9 & \\
& & & & & & & x_8 & x_9 & x_10
\end{matrix} $
But this does not run
$ \begin{matrix}
x_1 & x_2 & x_3 & & & & & & & &\\
& x_2 & x_3 & x_4 & & & & & & & \\
& & x_3 & x_4 & x_5 & & & & & & \\
& & & x_4 & x_5 & x_6 & & & & & \\
& & & & x_5 & x_6 & x_7 & & & & \\
& & & & & x_6 & x_7 & x_8 & & & \\
& & & & & & x_7 & x_8 & x_9 & & \\
& & & & & & & x_8 & x_9 & x_10 & \\
& & & & & & & & x_9 & x_10 & x_1
\end{matrix} $
\end{document}
答案1
\setcounter{MaxMatrixCols}{20}