答案1
以下是如何使用 构建第二个矩阵nicematrix
。
由于必须延伸到矩阵之外的点状规则,因此无法将和{bNiceMatrix}
键一起使用。first-row
first-col
这就是为什么我使用 a{NiceArray}
并在构建主数组之后使用 a 添加括号的\SubMatrix
原因\CodeAfter
。
\documentclass{article}
\usepackage{nicematrix}
\begin{document}
\begin{center}
\renewcommand{\arraystretch}{1.2}
$\begin{NiceArray}{rcccc:c:c}
& V_j & V_{j'} & V_k & V_{k'} & I_1 & I_2 \\
j & & & & & 1 \\
j' & & & & & -1 \\
k & & & & & & 1 \\
k' & & & & & & -1 \\
\hdottedline
m+1 & 1 & -1 \\
\hdottedline
m+2 & & & 1 & -1 & -r
\CodeAfter
\SubMatrix[{2-2}{7-7}]
\end{NiceArray}$
\end{center}
\end{document}