如何使用 NiceMatrix 包创建这些复杂矩阵?

如何使用 NiceMatrix 包创建这些复杂矩阵?

我对这个包不是很熟悉,但是我尝试了很多方法来重现下面这个矩阵:

对我来说最困难的是追踪线和分离向量IV在同一条线上

在此处输入图片描述

还有这个:

在此处输入图片描述

答案1

以下是如何使用 构建第二个矩阵nicematrix

由于必须延伸到矩阵之外的点状规则,因此无法将和{bNiceMatrix}键一起使用。first-rowfirst-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}

上述代码的输出

相关内容