我使用 acro 包来管理缩写和其他符号。因此,我为这些首字母缩略词定义了一个类,并希望以图形列表的样式为每个类创建一个列表。
我面临的问题是,页数太多,导致首字母缩略词列表中的水平框溢出。此列的宽度似乎可以很好地处理两位数的数字,但之后就太小了。我找到了选项 list-short-width 来调整缩写的大小,但找不到类似的页面选项。
我的问题是:如何调整列表中此列的大小?
该问题至少在 acro v2.8 和 v2.9 中重现过。重现该问题的最小工作示例是:
\documentclass[a4paper]{article}
%\usepackage[version=2]{acro} % Use this for newer versions of acro
\usepackage{acro}
\acsetup{
list-short-width = 4.2em,
list-style = lof,
macros = true,
xspace = true,
pages = first,
page-style=plain
}
\newcommand{\listofabbreviations}[1][List of Abbreviations]{\printacronyms[include-classes=abbrev,name=#1]}
\newcommand{\abbr}[3]{
\DeclareAcronym{#1}{
short = #2 ,
long = #3 ,
first-style=default ,
class = abbrev
}}
\abbr{FA}{FA}{First Abbreviation}
\abbr{ABCDE}{ABCDE}{My Abc Song}
\abbr{AO}{AO}{Alpha and Omega}
\begin{document}
\FA
\newpage
\setcounter{page}{42}
\ABCDE
\newpage
\setcounter{page}{999}
\AO
\newpage
\listofabbreviations
\end{document}
这将导致
Overfull \hbox (6.72215pt too wide) detected at line 40
这个问题类似于同样未得到解答的页边距标有避免页码的缩略词列表(acro 包),尽管并不完全相同。