将缩略词列表移至右侧

将缩略词列表移至右侧

我正在使用该acronym包,我想将首字母缩略词列表稍微向右移动。我在一个独立的.tex文件中有该列表,我使用的代码是:

\documentclass{article}
\usepackage[printonlyused]{acronym}
\begin{document}
\section{Description}
\acs{MLS}, \acl{TES}, \acf{HiRDLS}.
\section*{List of Acronyms}
\begin{acronym}
\acro{MLS}{Microwave Limb Sounder}
\acro{HiRDLS}{High-Resolution Dynamics Limb Sounder}
\acro{TES}{Tropospheric Emission Sounder}
\end{acronym}
\end{document}

我玩过\hbox,但\hspace没有结果。有人知道吗?

编辑:现在有一个可编译的示例。

答案1

由于它的行为类似于列表,因此您可以修改的值\itemindent

将以下几行添加到您的序言中,并进行调整0cm以满足您的需要

\usepackage{etoolbox}

\makeatletter
\pretocmd{\AC@@acro}{\setlength{\itemindent}{0cm}}
\makeatother

梅威瑟:

\documentclass{article}
\usepackage[printonlyused]{acronym}

\usepackage{etoolbox}

\makeatletter
\pretocmd{\AC@@acro}{\setlength{\itemindent}{0cm}}
\makeatother

\begin{document}
\section{Description}
\acs{MLS}, \acl{TES}, \acf{HiRDLS}.
\section*{List of Acronyms}
\begin{acronym}
\acro{MLS}{Microwave Limb Sounder}
\acro{HiRDLS}{High-Resolution Dynamics Limb Sounder}
\acro{TES}{Tropospheric Emission Sounder}
\end{acronym}
\end{document} 

输出:

在此处输入图片描述

相关内容