
Atualmente acompanho minhas abreviações manualmente e as coloco em uma página como abaixo. Gostaria de poder definir as abreviaturas dentro do texto do meu artigo e depois ter uma lista delas impressa automaticamente em uma página como esta:
Isso é possível e se sim, como?
\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 \\
}
Responder1
Isso usa o acronym
caminho do glossaries
pacote.
Cada sigla é definida usando \newacronym{label}{Acronym}{Explanation}
no preâmbulo.
O rótulo é usado para referência com \gls{label}
etc.
Para adicionar todos os acrônimos definidos, use \glsaddall
.
Lembre-se de compilar duas vezes (pdf)latex
e uma makeglossaries
etapa entre elas.
\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}