使用阿拉伯数字作为 tabularnote 索引时的间距

使用阿拉伯数字作为 tabularnote 索引时的间距

有没有办法让arabic计数器具有与 相同的间距alph

平均能量损失

\documentclass{article}

\usepackage{enumitem}
\usepackage{nicematrix}

\begin{document}

{
\NiceMatrixOptions{
    notes={
        style = \alph{#1}
    }
}
\begin{NiceTabular}{cc}
    a & b\tabularnote{test}
\end{NiceTabular}
}

{
\NiceMatrixOptions{
    notes={
        style = \arabic{#1}
    }
}
\begin{NiceTabular}{cc}
    a & b\tabularnote{test}
\end{NiceTabular}
}

\end{document}

在此处输入图片描述

答案1

表格末尾的注释列表由 列表组成。对于您的情况,您可能希望使用的enumitem设置来更改该列表。可以使用的键来提供该设置。widest*=1enumitemenumitem-keysnicematrix

\documentclass{article}

\usepackage{enumitem}
\usepackage{nicematrix}

\begin{document}

{
\NiceMatrixOptions{
    notes={
        style = \alph{#1} ,
        enumitem-keys = { widest* = 1 }
    }
}
\begin{NiceTabular}{cc}
    a & b\tabularnote{test}
\end{NiceTabular}
}

{
\NiceMatrixOptions{
    notes={
        style = \arabic{#1} ,
        enumitem-keys = { widest* = 1 }
    }
}
\begin{NiceTabular}{cc}
    a & b\tabularnote{test} 
\end{NiceTabular}
}

\end{document}

上述代码的输出

相关内容