如何排版图片中的矩阵分块?

2020-05-28 12:04发布

## 编译环境 操作系统 * [x ]` Windows 10 * [ ] macOS * [ ] Linux `若需勾选,请把[ ]改成[x]` Tex发行版 * [x ]` TexLive `2...

## 编译环境 操作系统 * [x ]` Windows 10 * [ ] macOS * [ ] Linux `若需勾选,请把[ ]改成[x]` Tex发行版 * [x ]` TexLive `2019` * [ ] MikTeX `版本号` * [ ] CTeX `若需勾选,请把[ ]改成[x]` ## 我的问题 图片中的矩阵分块有实现的方法吗? ![](https://wenda.latexstudio.net/data/attach/200528/6ORe9d5V.jpg)
1条回答
yuxtech.github.
2020-05-28 13:13 .采纳回答
有个包`nicematrix`或许可以,我这里直接利用`tikz`的`matrix`库 ```tex \documentclass{article} \usepackage{amsmath} \usepackage{tikz} \usetikzlibrary{matrix} \begin{document} \begin{tikzpicture} \matrix (a) [ matrix of math nodes, left delimiter = (, right delimiter = ), column sep = 3mm, row sep = 3mm ] { a_{11} & a_{12} & a_{13} \\ a_{21} & a_{22} & a_{23} \\ a_{31} & a_{32} & a_{33} \\ }; \draw[dashed] (a-1-1.north east) -- (a-3-3.north east); \draw[dashed] (a-1-1.south west) -- (a-3-3.south west); \end{tikzpicture} \end{document} ```

一周热门 更多>