如何获取附录页中列出的缩写?

如何获取附录页中列出的缩写?

目录后必须放置一个可能的术语、缩写和变量名称列表,并附上简短说明。如果术语列表中解释了任何术语,则应在第一次使用该术语的章节文本中使用。在 latex 中可以做到这一点吗?如果可以,哪个包可以帮助我做到这一点。这个 MsWord 屏幕截图就是一个很好的例子。 在此处输入图片描述 提前谢谢。

答案1

glossaries软件包允许词汇表以及首字母缩略词列表。下面是一个完整的示例(注意:使用 进行编译pdflatex <myfile> makeglossaries <myfile> pdflatex <myfile>):

\documentclass{article}

\usepackage[acronym]{glossaries}
\makeglossaries

\newglossaryentry{electrolyte}{name=electrolyte,%
    description={solution able to conduct electric current}}

\newacronym{svm}{SVM}{support vector machine}

\textheight=180pt% just for the example

\begin{document}

Some text about \gls{svm}.

Some more text about \gls{svm}.

Some text about \gls{electrolyte}.

Some more text about \gls{electrolyte}.

\printglossary[type=acronym]

\printglossary

\end{document}

在此处输入图片描述

相关内容