缩写和全文之间的制表符

缩写和全文之间的制表符

根据这篇文章(无行距缩略词列表),我想创建一个感谢列表。但长文本不在同一列中。

在此处输入图片描述

但这不是他们的结果。我需要短文本和长文本版本之间的制表符(红线)。

在此处输入图片描述

这是我的首字母缩写代码:

\documentclass[a4paper,11pt]{article}

\usepackage[printonlyused,withpage]{acronym}
\usepackage{xpatch}

\makeatletter
\xpatchcmd{\AC@deflist}
  {\addtolength{\leftmargin}{\labelsep}}
  {\addtolength{\leftmargin}{\labelsep}\setlength{\itemsep}{0pt}}
  {}{}
\makeatother

\begin{document}

\pagenumbering{Roman}

\section*{Table of abbreciations}
\input{sources/abbreviations}
\pagenumbering{arabic}
Use of \ac{saas} , \ac{yum}, \ac{jar} and \ac{ear} - \ac{LONGEXP}

\end{document}

使用这些缩写.tex

\begin{acronym}[d]
\acro{yum}[yum]{yellowdog updater modified}
\acro{ear}[EAR]{Enterprise Application Archive}
\acro{war}[WAR]{Web Application Resource}
\acro{jar}[JAR]{Java Archive}
\acro{saas}[SaaS]{Software as a Service}
\acro{LONGEXP}[LONGEXP]{A long acronym to make the point}
Markup Language}

\end{acronym}

输出结果缩写表如下所示: 在此处输入图片描述

但我需要这个结果(用油漆编辑的图像): 在此处输入图片描述

另一个包会干扰首字母缩略词包吗?

答案1

使用

\begin{acronym}[LONGEXP]
    \acro{yum}[yum]{yellowdog updater modified}
    \acro{ear}[EAR]{Enterprise Application Archive}
    \acro{war}[WAR]{Web Application Resource}
    \acro{jar}[JAR]{Java Archive}
    \acro{saas}[SaaS]{Software as a Service}
    \acro{LONGEXP}[LONGEXP]{A long acronym to make the point}   
\end{acronym}

A

相关内容