格式化首字母缩略词/缩写列表

格式化首字母缩略词/缩写列表

我目前正在写论文,想重新格式化我的缩写列表。我想将缩写符号加粗,然后在破折号和完整符号之间添加一个一定长度的间隙。我能够创建间隙(见下文)或破折号(通过使用此处[2] 中的代码)

我正在使用以下代码来弥补差距:

\documentclass[a4paper, 10pt, twoside, DIV=15,BCOR=12mm, headinclude=true,footinclude=false,headsepline,headings=openright]{scrbook}
\usepackage{acronym} % for abbreviations....
\usepackage{enumitem}

\begin{document}

\chapter*{Index of Abbreviations and Symbols}
\addcontentsline{toc}{chapter}{Index of Abbreviations and Symbols}
\setlist[description]{labelwidth=2.5cm}       
\begin{acronym}
\acro{DMPY}[2,6-DMPY]{2,6-dimethylpyrazine}
\acro{ASU}{Asymmetric unit}
\end{acronym}
\end{document}

和破折号 [2]

如何更改首字母缩略词的格式?

有什么聪明的方法可以解决这个问题吗?:)

相关内容