仅包含顶部索引的矩阵

仅包含顶部索引的矩阵

我正在尝试编写一个在实际矩阵之上有索引的矩阵,例如:

在此处输入图片描述

这类似于这个问题,但我没能设法避开矩阵两侧的索引——我只是希望它们位于顶部。

答案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} 

块阵列

相关内容