I would like an acronym list with equal vertical space between each acronym. My list is grouping acronyms that start with the same letter. How is this avoided?
Here is the code for a MWE with this "problem":
\documentclass[11pt,a4paper,openany,oneside]{book}
\usepackage[acronym,nonumberlist,toc]{glossaries}
\usepackage{glossary-superragged}
\makeglossaries
\renewcommand*{\acronymname}{List of Acronyms and Abbreviations}
\renewcommand*{\glspostdescription}{} % remove trailing dot
\renewcommand{\glsnamefont}[1]{\textbf{#1}}
\newacronym[longplural={Affinity Diagrams}]{ad}{AD}{Affinity Diagram}
\newacronym{dom}{DOM}{Document Object Model}
\newacronym{svg}{SVG}{Scalable Vector Graphics}
\newacronym{spa}{SPA}{Single Page Application}
\begin{document}
\tableofcontents
\printglossary[style=super, type=\acronymtype]
\section{First section}
Here we go... \gls{ad}, \gls{dom}, \gls{svg} and \gls{spa}!
\end{document}
I get the following output:




nogroupskip. How do I adjust the distance between the items in the list? I think it looks to compact now... – swenedo Aug 21 '13 at 10:13\printglossarynow supportsnogroupskipas an option to locally change the setting for that specific glossary. – Nicola Talbot Apr 27 '18 at 14:51