如何减少 LaTeX 中首字母缩略词列表的垂直空间?

如何减少 LaTeX 中首字母缩略词列表的垂直空间?

我正在使用该acronym包生成 LaTeX 中的缩写列表。以下是示例代码片段。

\documentclass{article}
\usepackage[colorlinks]{hyperref}
\usepackage[printonlyused,withpage]{acronym}
\begin{document}

Some text \ac{USA}

\section{List of Acronyms}
\begin{acronym}
 \item \acro{USA}{United States of America}
\end{acronym}
\end{document}

但是缩写列表之间的距离太大了,我们如何减少垂直空间?我试过了,\itemsep0pt但没有任何帮助。

答案1

目前尚不清楚 itemsep 为何无法正常工作,但这可能是由于您环境中的其他项目组合造成的。请参阅以下内容并与您自己的文档进行比较。

在此处输入图片描述

\documentclass{article}
\usepackage[colorlinks]{hyperref}
\usepackage[printonlyused]{acronym}
\begin{document}

Some legal text \ac{AE} \ac{MX} \ac{TZ} \ac{UK} \ac{UM} \ac{US}

\section{List of Acronyms}
Without defining item separation
\begin{acronym}[FOUR] % [FOUR] can be any word to show the indent
\item %remove this if you dont want a space between header and first item
\acro{AE}{United Arab Emirates}
\acro{MX}{United Mexican States}
\acro{TZ}{United Republic of Tanzania}
\acro{UK}{United Kingdom (of Great Britain and Northern Ireland)}
\acro{UM}{United States (Minor Outlying Islands)}
\acro{US}{United States (of America)}
\end{acronym}
\vspace{1cm}
With itemsep=-5pt
\begin{acronym}[FOUR]\itemsep=-5pt
\acro{AE}{United Arab Emirates}
\acro{MX}{United Mexican States}
\acro{TZ}{United Republic of Tanzania}
\acro{UK}{United Kingdom (of Great Britain and Northern Ireland)}
\acro{UM}{United States (Minor Outlying Islands)}
\acro{US}{United States (of America)}
\end{acronym}

\end{document}

相关内容