带省略号的行号矩阵怎么写?

2019-11-14 16:19发布

![](https://pics.latexstudio.net/data/images/201911/768627dd27e44ed.jpg) ![](https://pics.latexstudi...

![](https://pics.latexstudio.net/data/images/201911/768627dd27e44ed.jpg) ![](https://pics.latexstudio.net/data/images/201911/f949147c22c4c86.jpg) 抱歉我不懂怎么旋转图片。 就是有一个矩阵,是(i,j)位置为1,其余位置为0,希望用latex实现,并且在矩阵右边、下边写明行列号,但是能需要在矩阵和行号之间用省略号连接起来 附上手写的图片 ![](https://pics.latexstudio.net/data/images/201911/1054fdc7a9a42cc.png)
4条回答
Iydon - hello world!
2019-11-14 18:19
以下例子来自`nicematrix`宏包. 结果可以看最后, 虽然和描述略有不同, 但是可以在第一行/最后一行(第一列/最后一列) 手动添加省略号. ![编译结果](https://pics.latexstudio.net/data/images/201911/d9782956a0bbed0.jpg "编译结果")
代码, 请点击此处显示.

\documentclass{article}
\usepackage{nicematrix}
\begin{document}
\begin{equation*}
    \begin{pNiceArray}{C|CC:C}[
        first-row,last-row,first-col,last-col,
        code-for-first-row=\color{blue}\scriptstyle,
        code-for-last-row=\color{blue}\scriptstyle,
        code-for-first-col=\color{blue}\scriptstyle,
        code-for-last-col=\color{blue}\scriptstyle]
            & C_1 & C_2 & C_3 & C_4 &     \\
        L_1 & 1   & 2   & 3   & 4   & L_1 \\ \hline
        L_2 & 5   & 6   & 7   & 8   & L_2 \\
        L_3 & 9   & 10  & 11  & 12  & L_3 \\ \hdottedline
        L_4 & 13  & 14  & 15  & 16  & L_4 \\
            & C_1 & C_2 & C_3 & C_4 &
    \end{pNiceArray}
\end{equation*}
\begin{equation*}
    \NiceMatrixOptions{transparent}
    \begin{pmatrix}
        1      & \cdots & \cdots & 1      \\
        0      & \ddots &        & \vdots \\
        \vdots & \ddots & \ddots & \vdots \\
        0      & \cdots & 0      & 1
    \end{pmatrix}
\end{equation*}
\end{document}

作者追问:2019-11-14 18:19

你可能没明白我的意思,题目描述里面有图片啊,和你说的好像不是一回事。。。

回答: 2019-11-14 18:19

你确定? `nicematrix` 宏包里有你需要的样式, 建议你看宏包, 我没有说我的回答完全符合你的问题.

一周热门 更多>