## 编译环境 操作系统 * [x ]` Windows 10 * [ ] macOS * [ ] Linux `若需勾选,请把[ ]改成[x]` Tex发行版 * [x ]` TexLive `2019` * [ ] MikTeX `版本号` * [ ] CTeX `若需勾选,请把[ ]改成[x]` ## 我的问题 图片中的矩阵分块有实现的方法吗? ![](https://wenda.latexstudio.net/data/attach/200528/6ORe9d5V.jpg)

1 回答1

2
有个包`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} ```
  • 回复 yuxtech.github.io :已经进行了微调,实现起来没问题 – 心之彩书 2020-05-28 14:47 回复
  • 非常感谢你的回复! – 心之彩书 2020-05-28 14:40 回复
  • 忽略这里的 amp; 网页显示有问题 – yuxtech.github.io 2020-05-28 13:14 回复

你的回答

请登录后回答

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