请教大牛们,分块矩阵的这种表示方法怎样用latex编译出来。谢谢!
提问于:
浏览数:
1978
3 回答
1
<p>是哪里不会写?矩阵外的序号?还是水平和竖向的省略号?省略号无非是 <code>\cdots</code>、 <code>\vdots</code>,如果是矩阵外的序号,为什么不先搜索一下问答的既有问题呢?看看<br><a href="https://wenda.latexstudio.net/q-1237.html">这里</a></p>
-
谢谢! – 匿名用户 2019-11-14 09:56 回复
1
```tex
%\usepackage{nicematrix}
%\usepackage{mathtools}
\[
A=\begin{pNiceMatrix}[first-row,first-col]
& n_1 & n_2 & \cdots & n_l \\
s_1 & A_{11} & A_{12} & \cdots & A_{1l} \\
s_2 & A_{21} & A_{22} & \cdots & A_{2l} \\
\vdots & \vdots & \vdots & & \vdots \\
s_t & A_{t1} & A_{t2} & \cdots & A_{tl} \\
\end{pNiceMatrix}
\]
```
![]{C:/Users/WangYB_Admin/Desktop/1.JPG}
-
回复 undefined : 你那个是旧版本的,你要先升级到最新版的nicematrix, November 11, 2019, 版本对应 3.7 。你升级到最新版,估计就可以了。 – WoodMan 2019-11-27 09:35 回复
-
我用 TeXLive 2019 试了一下还是不行,而且我看 nicematrix 的文档,里面已经没有了 first-row first-col 相关的内容,而是用了 pNiceArrayRC 环境, – frank.xin 2019-11-26 20:03 回复
-
回复 undefined :我重新跑了一下,试了试。没有问题。 你的nicematrix宏包,升级到最新,再试一下。我是texlive2019,xelatex. %mwe_nicematrix.te – WoodMan 2019-11-25 11:05 回复
-
你好,我这里测试的时候编译不通过,总是说 The option "first-row" is unknown or meaningless in the context. If y – frank.xin 2019-11-23 11:14 回复
-
-
0
```tex
\documentclass{article}
\usepackage{mathtools}
\begin{document}
\[
A = \bordermatrix{
& n_1 & n_2 & \cdots & n_l \cr
s_1 & A_{11} & A_{12} & \cdots & A_{1l} \cr
s_2 & A_{21} & A_{22} & \cdots & A_{2l} \cr
\vdots & \vdots & \vdots & & \vdots \cr
s_t & A_{t1} & A_{t2} & \cdots & A_{tl} \cr
}
\]
\end{document}
```
你的回答
请登录后回答
你的回答将会帮助更多人,请务必认真回答问题。