有没有办法让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*=1
enumitem
enumitem-keys
nicematrix
\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}