答案1
你可以这样做nicematrix
:
\documentclass{article}
\usepackage{nicematrix}
\begin{document}
\setcounter{MaxMatrixCols}{15}
$\begin{bNiceMatrix}[first-row]
x & x^2 & x^3 & x^4 & x^5 & x^6 & x^7 & x^8 & x^9 & x^{10} \\
r & -r & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 & \ldots \\
0 & r^2 & -2r^2 & & 0 & 0 & 0 & 0 & 0 & 0 & \ldots \\
0 & r^3 & -3r^3 & 3r^3 & r^3 & 0 & 0 & 0 & 0 & 0 & \ldots \\
0 & 0 & 0 & r^4 & -4r^4 & 6r^4 & -4r^4 & r4 & 0 & 0 & \ldots \\
0 & 0 & 0 & 0 & r^5 & -5r^5 & 10r^5 & -10r^5 & 5r^5 & -r^5 & \ldots \\
\vdots & \vdots & \vdots & \vdots & \vdots & \vdots & \vdots & \vdots & \vdots & \vdots & \ddots
\end{bNiceMatrix}$
\end{document}
答案2
只需省略每行中的最后条目即可,blockarray
这些条目原本用于标记行(但不要不是省略&
前面的它们。
做一个比你的稍微简单一点的例子(因为你没有提供任何源代码,所以我不想费力地输入你的 11 列矩阵的所有条目:
\documentclass[11pt, a4paper]{article}
\usepackage{amsmath,blkarray, bigstrut}
\begin{document}
\[
\begin{blockarray}{*{5}{>{\scriptstyle}c}}
x & x^{2}& x^{3} & \\
\begin{block}{[cccc] >{\scriptstyle}c}
\bigstrut[t] r & -r & 0 & \cdots & \\
0 & r^{2} & -2 r^{2} & \cdots & \\
0 & 0 & r^{3} & \cdots & \\
0 & 0 & 0 & \cdots & \\
\vdots & \vdots & \vdots &\ddots\\
\end{block}
\end{blockarray}
\]
\end{document}