\SubMatrix 在 Overleaf 中未定义

\SubMatrix 在 Overleaf 中未定义

我有兴趣做一些类似于矩阵内的子矩阵,但无法在 Overleaf 上实现给定的输出。从上面链接的问题中获取以下 MWE

\documentclass{article}
\usepackage{nicematrix}

\begin{document}
$\begin{pNiceMatrix}[margin]
c11 & c12 & c13 & c14 & c15 & c16 & c17 & c18 & c19 \\
c12 & c22 & c23 & c24 & c25 & c26 & c27 & c28 & c29 \\
c13 & c32 & c33 & c34 & c35 & c36 & c37 & c38 & c39 \\
c14 & c42 & c44 & c45 & c46 & c47 & c48 & c48 & c49 
\CodeAfter
  \SubMatrix({1-7}{1-8})
  \SubMatrix({2-5}{3-6})
  \SubMatrix({4-1}{4-3})
\end{pNiceMatrix}$
\end{document}

当我在本地编译时能够获得所需的结果,但在 Overleaf 上却不能,因为它返回的\SubMatrix是一个未定义的控制序列。

我该如何纠正这个问题并在 Overleaf 上成功使用 nicematrix 包?该包的文档提到了它在 Overleaf 中的使用,所以我确信它应该可以工作。

答案1

Overleaf 没有最新版本的nicematrix。您应该将最新版本的文件上传nicematrix.sty到 Overleaf 项目的目录中。您可以在 TeXLive 的 SVN 服务器上找到该文件:www.tug.org/svn/texlive/trunk/Master/texmf-dist/tex/latex/nicematrix/nicematrix.sty

相关内容