首字母缩略词列表中的缩写间距问题

首字母缩略词列表中的缩写间距问题

我希望这些首字母缩略词处于同一级别,并且具有相同的分离度。我使用下一个 MDPI 定义:

\begin{document}{article}

\newcommand{\abbreviations}[1]{%
\vspace{12pt}\noindent{\selectfont\textbf{Abbreviations \& Acronyms}\par\vspace{3pt}\noindent {\fontsize{9}{12.0}\selectfont #1}\par}}

\begin{abbreviations}{The following abbreviations and acronyms are used in this manuscript:\\}
\noindent
appm \makebox[2in]{\dotfill} Atomic Parts Per Million \\
Al \makebox[2in]{\dotfill} Aluminium\\
\end{document}

在此处输入图片描述

答案1

您需要将缩写放在 内\makebox。然后它才能正确对齐。

\documentclass{article}

\begin{document}

\noindent
\makebox[2in]{appm \dotfill} Atomic Parts Per Million \\
\makebox[2in]{Al \dotfill} Aluminium \\

\end{document}

在此处输入图片描述

答案2

类似这样的事?

在此处输入图片描述

\documentclass{article}
\usepackage{graphicx}
\usepackage{amsmath}
\newcommand{\mindotfill}{%
  \nolinebreak
  {\def\hfill{\hskip 1cm plus 1fill\relax}%
   \dotfill
  }%
}

\begin{document}

test test test\mindotfill 123\\
test test test test test test \mindotfill 123\\
test test test test test test test test test test test\mindotfill 123\\
 
\end{document}

相关内容