remove spacing and use comma in list of acronyms
Verfasst: Mo 9. Jan 2023, 13:45
Hi there,
I use the acro package to create a list of acronyms. However, I would like to have no line spacing in the listing and couldn´t find a solution for this. Also I get an error message when I put a comma in the acronym description (e.g. long = Assembly, Integration and Test, see minimal example). Does anyone know how to fix this and how to get rid of the line spacing?
I use the acro package to create a list of acronyms. However, I would like to have no line spacing in the listing and couldn´t find a solution for this. Also I get an error message when I put a comma in the acronym description (e.g. long = Assembly, Integration and Test, see minimal example). Does anyone know how to fix this and how to get rid of the line spacing?
\documentclass{scrreprt}
\usepackage{acro}
\DeclareAcronym{AIL}{
short = AIL,
long = Action Item List}
\DeclareAcronym{AIT}{
short = AIT,
long = Assembly, Integration and Test}
\begin{document}
\section{Introduction}
\ac{AIL}\ac{AIT}
\section{ACRONYMS AND ABBREVIATIONS}
\printacronyms[heading=none]
\end{document}