创建缩写列表?

创建缩写列表?

我正在尝试创建缩写列表。我看过一些示例,但我希望它看起来像这样。

enter image description here

答案1

您可以使用词汇表包。链接这里以下是一些如何使用它的示例。

这里有一个 MWE,介绍如何获取您想要的内容,取自链接的示例站点并稍加修改,删除页码并将首字母缩略词部分的标题更改为缩写。

\documentclass{report}
\usepackage[nopostdot,toc,acronym,nomain,nonumberlist]{glossaries}
\makeglossaries
\setacronymstyle{long-short}

\loadglsentries[acronym]{myglossaries}

\begin{document}

\chapter{Sample}

First use:

\gls{fema}
\gls{cbow}

\printglossary[title={Abbreviations},type=acronym,style=long]

\end{document}

该行 :\loadglsentries[acronym]{myglossaries}仅加载一个文件(myglossaries.tex),其中包含格式如下的词汇表条目:

\newacronym[type=\glsdefaulttype]{cbow}{CBOW}{Continuous Bag-Of-Words}
\newacronym[type=\glsdefaulttype]{fema}{FEMA}{Feature Embeddings for domain Adaptation}

您需要自己提供这个.tex 文件,这样您就可以用自己的文件和条目制作自己的词汇表文件。

以下是输出示例:

enter image description here

相关内容