生成文本中出现的缩写列表?

生成文本中出现的缩写列表?

目前,我手动跟踪缩写并将它们放在如下页面中。我希望能够在论文文本中定义缩写,然后将它们的列表自动打印在如下页面上:

这可能吗?如果可能,怎么做?

在此处输入图片描述

\clearpage 
\setstretch{1.5} 
\lhead{\emph{Abbreviations}}

\listofsymbols{ll} % Include a list of Abbreviations (a table of two columns)
{
\textbf{AHRS} & \textbf{A}ttitude and \textbf{H}eading \textbf{R}eference \textbf{S}ystem \\
\textbf{API} & \textbf{A}pplication \textbf{P}rogramming \textbf{I}nterface \\
\textbf{IMU} & \textbf{I}nertial \textbf{M}easurements \textbf{U}nit \\
\textbf{JSON} & \textbf{J}ava\textbf{S}cript \textbf{O}bject \textbf{N}otation \\
\textbf{VGA} & \textbf{V}ideo \textbf{G}raphics \textbf{A}rray  ($640\times480$ px)\\
\textbf{WPF} & \textbf{W}indows \textbf{P}resentation \textbf{F}oundation \\
\textbf{XAML} & E\textbf{x}tended \textbf{A}pplication \textbf{M}arkup \textbf{L}anguage \\
}

答案1

这个采用的是封装acronym的方式glossaries

\newacronym{label}{Acronym}{Explanation}每个缩略词均在序言中定义。

该标签供参考\gls{label}等使用。

要添加所有定义的缩写词,请使用\glsaddall

请记住,两次编译之间要间隔(pdf)latex一步makeglossaries

\documentclass{book}

\usepackage[acronym]{glossaries}
\renewcommand{\acronymname}{List of Abbreviations}

\makeglossaries

\newacronym{ahrs}{AHRS}{\textbf{A}ttitude and \textbf{H}eading \textbf{R}eference \textbf{S}ystem} 
\newacronym{api}{\textbf{API}}{\textbf{A}pplication \textbf{P}rogramming \textbf{I}nterface}%
\newacronym{imu}{IMU}{ \textbf{I}nertial \textbf{M}easurements \textbf{U}nit}
\newacronym{json}{JSON} { \textbf{J}ava\textbf{S}cript \textbf{O}bject \textbf{N}otation}
\newacronym{vga}{VGA}{ \textbf{V}ideo \textbf{G}raphics \textbf{A}rray  ($640\times480$ px)}
\newacronym{wpf}{WPF}{ \textbf{W}indows \textbf{P}resentation \textbf{F}oundation}
\newacronym{xaml}{XAML}{ E\textbf{x}tended \textbf{A}pplication \textbf{M}arkup \textbf{L}anguage}


\begin{document}

\glsaddall
\printacronyms

\end{document}  

在此处输入图片描述

相关内容