使用缩写列表作为乳胶中的表格

使用缩写列表作为乳胶中的表格

我发现在 ABBREVIATIONS 中制作这样的表格很困难,有什么建议吗?像这样在此处输入图片描述

答案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}

相关内容