我正在尝试将 nicematrix 功能合并到我的 Sphinx 文档中。我有 MiKTeX,并且安装了 nicematrix 包。
在我的 conf.py 文件中,我添加了以下内容:
latex_elements ={'preamble': r'''\usepackage{nicematrix}'''}
在我的 .rst 文件中,我尝试了 nicematrix 文档中的一个简单示例(https://texlive.mycozy.space/macros/latex/contrib/nicematrix/nicematrix.pdf):
.. math::
\NiceMatrixOptions{cell-space-limits = 1pt}
\begin{pNiceMatrix}
\frac12 & -\frac12 \\
\frac13 & \frac14 \\
\end{pNiceMatrix}
但这是我收到的错误:
(C:\...\AppData\Local\Programs\MiKTeX\tex/latex/amsfonts\ums
a.fd)
(C:\...\AppData\Local\Programs\MiKTeX\tex/latex/amsfonts\ums
b.fd)
! Undefined control sequence.
<argument> ...ag \begin {split}\NiceMatrixOptions
{cell-space-limits = 1pt} ...
l.21 \end{pNiceMatrix}\end{split}
! LaTeX Error: Environment pNiceMatrix undefined.
我猜是因为 ..math:: 指的是 amsmath。那么我该如何引用 nicematrix 模块呢?
谢谢!