nicematrix \ddots 在不同的文档类别中有不同的表现

nicematrix \ddots 在不同的文档类别中有不同的表现

当我使用 \documentclass{article} 时,就像(没问题)

\documentclass{article}
\usepackage{nicematrix}
\NiceMatrixOptions{transparent,nullify-dots}

\newcommand{\underbracedmatrix}[2]{%
    \left(\;
    \smash[b]{\underbrace{
            \begin{NiceMatrix}[columns-width = auto]#1\end{NiceMatrix}
        }_{#2}}
    \;\right)
    \vphantom{\underbrace{\begin{NiceMatrix}#1\end{NiceMatrix}}_{#2}}
}

\begin{document}
\begin{equation}
K=
\underbracedmatrix{
    3  & 1 &      &      &   \\
    1  & 2 &  1   &      &   \\
    & 1 &\ddots&\ddots&   \\
    &   &\ddots&  3   & 1 \\
    &   &      &  1   & 1 \\}{n}
\end{equation}
\end{document}

在此处输入图片描述

但是当我使用 \documentclass{revtex4-1} 时,它就像

\documentclass{revtex4-1}
\usepackage{nicematrix}
\NiceMatrixOptions{transparent,nullify-dots}

\newcommand{\underbracedmatrix}[2]{%
    \left(\;
    \smash[b]{\underbrace{
            \begin{NiceMatrix}[columns-width = auto]#1\end{NiceMatrix}
        }_{#2}}
    \;\right)
    \vphantom{\underbrace{\begin{NiceMatrix}#1\end{NiceMatrix}}_{#2}}
}

\begin{document}

\begin{equation}
K=
\underbracedmatrix{
    3  & 1 &      &      &   \\
    1  & 2 &  1   &      &   \\
    & 1 &\ddots&\ddots&   \\
    &   &\ddots&  3   & 1 \\
    &   &      &  1   & 1 \\}{n}
\end{equation}

\end{document}

在此处输入图片描述 我不知道如何修复它。

答案1

我已经编写了一个新版本来解决这个问题。新版本(2.1.5 2019-05-27)现在与类和nicematrix兼容。revtex4-1revtex4-2

相关内容