如何使用 Nicematrix V6.3 的粗体选项?

如何使用 Nicematrix V6.3 的粗体选项?

我想使用\RowStyle命令nicematrix,但是我遇到了新的 6.3 版本的问题。

我曾经使用过\RowStyle{\bfseries},但现在看来选项已经改变了......

\documentclass{scrartcl}
\usepackage[svgnames]{xcolor}
\colorlet{Gray}{Lavender!80!gray}
\usepackage{nicematrix}
\usepackage{siunitx}
\usepackage{booktabs}
\begin{document}
    \begin{table}[hbtp]
        \centering
        \caption{$d$-values of the reflex maxima of PD1 and PD2}
        \label{tab:reflex-values}
        \sisetup{table-format = 2.3}
        %    \resizebox{\textwidth}{!}{
            \begin{NiceTabular}{lS[table-auto-round]lS[table-auto-round]}[baseline=1.2]
                \CodeBefore
                \rowcolors{2}{Gray}{white}
                \Body
                \toprule
                \RowStyle{\bfseries}
                \Block[c]{1-2}{PD1} & & \Block[c]{1-2}{PD2} & \\
                \midrule
                $\varphi_1$ [\si{\degree}] & 8.8848 & $\varphi_1$ [\si{\degree}] & 7.7048 \\
                $\vartheta_1$ [\si{\degree}] & 4.4424 & $\vartheta_1$ [\si{\degree}] & 3.8524 \\
                $d_1$ [\si{\angstrom}] & 9.944887 & $d_1$ [\si{\angstrom}] &  11.465158 \\
                $\varphi_2$ [\si{\degree}] & 28.1826 & $\varphi_2$ [\si{\degree}] & 9.1102 \\
                $\vartheta_2$ [\si{\degree}] & 14.0913 & $\vartheta_2$ [\si{\degree}] & 4.5551 \\
                $d_2$ [\si{\angstrom}] & 3.163863 & $d_2$ [\si{\angstrom}] & 9.699301 \\
                $\varphi_3$ [\si{\degree}] & {--} & $\varphi_3$ [\si{\degree}] & 26.1225 \\
                $\vartheta_3$ [\si{\degree}] & {--} & $\vartheta_3$ [\si{\degree}] & 13.06125 \\
                $d_3$ [\si{\angstrom}] & {--} & $d_3$ [\si{\angstrom}] & 3.408518 \\
                \bottomrule
            \end{NiceTabular}
            %    }
    \end{table}
\end{document}

不再起作用。如何使用新bold密钥?可以将bold密钥从unicode-math 更改boldmathsymbfunicode-math 吗?

编辑: 这在某种程度上起到了 MWE 的作用,但是我的主要文档中的相同代码(只是不同的包)会导致一些错误。

Package xcolor: Undefined color 'false'.

答案1

使用最新版本的siunitx(2021-11-03 v3.0.35)并加载 nicematrix

A

感谢F. Pantigny 作者和维护者nicematrix对版本的快速回答siunitx

相关内容