特殊矩阵表示法请教大牛们,分块矩阵的这种表示方法怎样用latex编译出来。谢谢!

3 回答3

1
<p>是哪里不会写?矩阵外的序号?还是水平和竖向的省略号?省略号无非是 <code>\cdots</code>、 <code>\vdots</code>,如果是矩阵外的序号,为什么不先搜索一下问答的既有问题呢?看看<br><a href="https://wenda.latexstudio.net/q-1237.html">这里</a></p>
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 回复
  • 用图床的方式插入图片,感觉还是很不方便。本地的图片,不能直接上传,这非常不方便。如果能直接插入图片文件,就省事多了。 – WoodMan 2019-11-15 09:01 回复
  • 为什么图片加不进来呢? – WoodMan 2019-11-15 08:57 回复
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} ```

你的回答

请登录后回答

你的回答将会帮助更多人,请务必认真回答问题。