提问于:
浏览数:
7898
#### 如图所示,如何在矩阵前面加上“N,IA, IP, SA”标注
![](https://wenda.latexstudio.net/data/attach/190927/igBox8Bg.png)
4 回答
7
```tex
\documentclass{article}
\usepackage{mathtools}
\begin{document}
\[
\bordermatrix{
& N & IA & IP & SA \cr
N & 0 & 1 & 0 & 0 \cr
IA & \tilde{p}_a & 0 & p_a & 0 \cr
IP & 0 & \tilde{p}_s & 0 & p_s \cr
SA & p_r & 0 & \tilde{p}_r & 0 \cr
}
\]
\end{document}
```
其他内容参考 [latexstudio 的新浪博客](http://blog.sina.com.cn/s/blog_5e16f1770102dqp2.html)
2
我觉得可以试试[`nicematrix`](https://www.ctan.org/pkg/nicematrix "`nicematrix`")宏包,你可能会有另外的惊喜。
1
用 `\bordermatrix`,参考刘海洋《LaTeX 入门》4.2.5 小节:
![image.png](https://i.loli.net/2019/09/27/BVsrvZ7Wn1aUOAS.png)
0
1. %\usepackage{mathtools,nicematrix}
2. \[
3. A=\begin{pNiceMatrix}[first-row,first-col]
4. & n_1 & n_2 & \cdots & n_l \\
5. s_1 & A_{11} & A_{12} & \cdots & A_{1l} \\
6. s_2 & A_{21} & A_{22} & \cdots & A_{2l} \\
7. \vdots & \vdots & \vdots & & \vdots \\
8. s_t & A_{t1} & A_{t2} & \cdots & A_{tl} \\
9. \end{pNiceMatrix}
10. \]
回答: 2019-11-15 08:45
```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}
\]
```
你的回答
请登录后回答
你的回答将会帮助更多人,请务必认真回答问题。