¿Generar una lista de abreviaturas que aparecen en el texto?

¿Generar una lista de abreviaturas que aparecen en el texto?

Actualmente hago un seguimiento de mis abreviaturas manualmente y las coloco en una página como la siguiente. Me gustaría poder definir las abreviaturas dentro del texto de mi artículo y luego imprimir una lista de ellas automáticamente en una página como esta:

¿Es eso posible y, en caso afirmativo, cómo?

ingrese la descripción de la imagen aquí

\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 \\
}

Respuesta1

Esto utiliza la acronymforma del glossariespaquete.

Cada acrónimo se define utilizando \newacronym{label}{Acronym}{Explanation}en el preámbulo.

La etiqueta se utiliza como referencia, \gls{label}etc.

Para agregar todas las siglas definidas, utilice \glsaddall.

Recuerde compilar dos veces (pdf)latexy un makeglossariespaso en el medio.

\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}  

ingrese la descripción de la imagen aquí

información relacionada