缩略词列表的自定义

缩略词列表的自定义

我是初学者,刚来这里。我遇到了与此处提到的问题类似的问题:

右对齐词汇表第一列

但我还想增加首字母缩略词和定义之间的距离。我已经在上面的链接中实施了解决方案。

非常感谢,托马斯。

答案1

您可以在表格的列之间添加一些手动空间:

\documentclass{article}
\usepackage{glossaries}
\makeglossaries

\newglossarystyle{mysuper}{%
  \setglossarystyle{super}% base style on the list style
  \renewenvironment{theglossary}%
      {\tablehead{}\tabletail{}%
       \begin{supertabular}{r@{\hskip 1in}p{\glsdescwidth}}}%
      {\end{supertabular}}%
}
\setglossarystyle{mysuper}

\newglossaryentry{Example}{name=Example, description=an example}
\newglossaryentry{EX}{name=EX, description=another example}

\begin{document}

I use \gls{Example} and \gls{EX} in my text.

\printglossaries

\end{document}

在此处输入图片描述

相关内容