软件包 nicematrix — “TeX 容量超出”错误

软件包 nicematrix — “TeX 容量超出”错误

我正在尝试重现手册第 16.3 节中的示例nicematrix

\documentclass[10pt,a4paper]{article}

\usepackage{nicematrix}

\begin{document}
\NiceMatrixOptions{nullify-dots,code-for-first-col = \color{blue},code-for-first-col=\color{blue}}
$\begin{pNiceMatrix}[first-row,first-col]
&   & \Ldots[line-style={solid,<->},shorten=0pt]^{n \text{ columns}} \\
& 1 & 1 & 1 & \Ldots & 1 \\
& 1 & 1 & 1 &  & 1 \\
\Vdots[line-style={solid,<->}]_{n \text{ rows}} & 1 & 1 & 1 &  & 1 \\
& 1 & 1 & 1 &  & 1 \\& 1 & 1 & 1 & \Ldots & 1
\end{pNiceMatrix}$
\end{document}

但是,我一直收到“TeX 容量超出”错误。

我将其归结为以下 MWE。

\documentclass[10pt,a4paper]{article}

\usepackage{nicematrix}

\begin{document}
    $\begin{pNiceMatrix}[first-row,first-col]
    &   & \Ldots & \\
    & 1 & 1 & 1 & \Ldots & 1 \\
    & 1 & 1 & 1 &  & 1 \\
    \Vdots & 1 & 1 & 1 &  & 1 \\
    & 1 & 1 & 1 &  & 1 \\
    & 1 & 1 & 1 & \Ldots & 1
    \end{pNiceMatrix}$
\end{document}

它仍然会产生相同的错误。

PS 我在 Ubuntu 20.04.1 LTS 上通过 TeXstudio 进行编译。

PPS 完整的日志文件可以在这里找到:https://pastebin.com/W6dVWMc9

答案1

解决该问题的方法是更新软件包nicematrix

相关内容