如何让 nicematrix 在 texlive 2019 中工作

如何让 nicematrix 在 texlive 2019 中工作

我正在使用TeX 3.14159265 (TeX Live 2019/Debian)。我的简单测试代码是:

\documentclass[]{article}
\usepackage{nicematrix}

\begin{document}

\section{}
\begin{NiceTabular}{@{}c!{\qquad}ccc!{\qquad}ccc@{}}
    \toprule
    & \Block{1-3}{First group} & & & \Block{1-3}{Second group} \\
    Rank & 1A & 1B & 1C & 2A & 2B & 2C \\
    \midrule
    1 & 0.657 & 0.913 & 0.733 & 0.830 & 0.387 & 0.893\\
    2 & 0.343 & 0.537 & 0.655 & 0.690 & 0.471 & 0.333\\
    3 & 0.783 & 0.885 & 0.015 & 0.306 & 0.643 & 0.263\\
    4 & 0.161 & 0.708 & 0.386 & 0.257 & 0.074 & 0.336\\
    \bottomrule
\end{NiceTabular}
\end{document}

这给了我:

! LaTeX Error: Environment NiceTabular undefined.

nicematrix 的版本是2020/02/07 v3.11

有没有办法将 nicematrix 与 Tex Live 2019 一起使用?

相关内容