我喜欢在缩写和扩展之间留出更多空间
CR 领圈比率 DCAC 离散圆形主动轮廓
使用首字母缩略词包
答案1
您需要 refedine 或 patch \@acf
。以下示例将空格替换为点:
\documentclass{article}
\usepackage{acronym,etoolbox}
\makeatletter
\patchcmd\@acf{\nolinebreak[3] }{\nolinebreak[3]\ldots}{}{}
\makeatother
\begin{document}
\ac{foo}
\begin{acronym}
\acro{foo}{long description of foo}
\end{acronym}
\end{document}
\ldots
将上面的代码替换为您想要的任何空格。
如果您还想更改 PDF 书签的外观,您还需要重新定义/修补\acfa
。