答案1
虽然我不建议在首字母缩略词列表中使用这种笼式样式,但您可以使用acro
和的组合来实现它nicematrix
。附注:仅当您的列表不超过一页的长度时,此解决方案才会正常工作。
\documentclass{article}
\usepackage{nicematrix}
\usepackage{acro}
\acsetup{use-id-as-short}
\DeclareAcronym{AA}{long = Alpha Acids}
\DeclareAcronym{ABV}{long = Alcohol By Volume}
\DeclareAcronym{DMS}{long = Dimethyl Sulfide}
\NewAcroTemplate[list]{customtable}
{
\acronymsmapF
{ \AcroAddRow{\acrowrite {short}&\acrowrite {list}\\} }
{ \AcroRerun }
\acroheading
\acropreamble
\par \noindent
\begin{NiceTabularX}{\linewidth}{lX}[hvlines, cell-space-limits=3pt]
\AcronymTable
\end{NiceTabularX}
}
\begin{document}
\acuseall
\printacronyms[sort=true, template=customtable]
\end{document}