答案1
答案2
您可以使用 轻松做到这{bNiceMatrix}
一点nicematrix
。
\documentclass{article}
\usepackage{nicematrix}
\begin{document}
$\begin{bNiceMatrix}[first-row,first-col,last-row,last-col]
1 & 7 & 8 & 6 & 52 \\
3 & 17 & 9 & 9 & 1 \\
12 & 10 & 9 & 6 & 5 \\
1 & 2 & 2 & 4 & 5
\end{bNiceMatrix}$
\end{document}
通过nicematrix
,您还可以使用工具将分隔符准确地放置在您想要的位置。
\documentclass{article}
\usepackage{nicematrix}
\begin{document}
$\begin{NiceMatrix}
1 & 7 & 8 & 6 & 52 \\
3 & 17 & 9 & 9 & 1 \\
12 & 10 & 9 & 6 & 5 \\
1 & 2 & 2 & 4 & 5
\CodeAfter
\SubMatrix[{2-2}{3-3}]
\end{NiceMatrix}$
\end{document}