当我使用 \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-1
revtex4-2