I want to add grouping headers to the super glossary style of the latex package glossaries, i.e. something analogous to the listgroup style but with the formatting of super. The problem with listgroup is that it adds too much vertical spacing and the descriptions are not aligned. I've also tried alttreegroup but again I'm not entirely happy with the vertical spacing and I don't like the fact that I have to manually change the horizontal spacing with glssetwidest. I'm aware of the post Customising glossary group titles, but unfortunately the newglossarystyle defined there is not quite what I'm looking for. So, how can I get a "supergroup" glossary style? Here is a MWE to work with:
\documentclass{report}
\usepackage{setspace}
\usepackage[nopostdot,nonumberlist,acronyms,section]{glossaries}
\setglossarystyle{super}
%\setglossarystyle{listgroup}
%\setglossarystyle{alttreegroup}
%\glssetwidest{00000}
\newglossary[slg]{symbol}{sot}{stn}{Symbols}
\makeglossaries
\newglossaryentry{area}{
type=symbol,
name={\ensuremath{S}},
description={reference area},
sort={aS}
}
\newglossaryentry{span}{
type=symbol,
name={\ensuremath{b}},
description={wing span},
sort={ab}
}
\newglossaryentry{dynp}{
type=symbol,
name={\ensuremath{q_\infty}},
description={dynamic pressure},
sort={aq}
}
\newglossaryentry{aoa}{
type=symbol,
name={\ensuremath{\alpha}},
description={angle of attack},
sort={ga}
}
\newacronym
[sort={a}]
{bcr}{BCR}{Block Compressed Row}
\newacronym
[sort={a}]
{cad}{CAD}{Computer-Aided Design}
\newcommand*{\Agroupname}{Alphanumeric}
\newcommand*{\Ggroupname}{Greek letters}
\begin{document}
\onehalfspacing
\section*{List of Symbols and Acronyms}
\glsaddall
\printglossary[type=symbol]
\renewcommand*{\glsgroupheading}[1]{}%
\printglossary[type=acronym]
\end{document}
By the way, is there a better way to rename groups than redefining \Agroupname and \Ggroupname}?


style=superto the acronym glossary. Two more things: 1) how would you left justify the parent entries? 2) how would you reduce the vertical spacing around the parent entries? – jalalhugo Jul 04 '14 at 14:26cforldid the trick. As for the vertical spacing, it works but unfortunately the symbol glossary is no longer aligned with the acronym glossary. Also, I tried to comment out\renewcommand*{\glsgroupskip}{}to retain some spacing between the two groups but I got an error. Anyway, thank you very much for your help, I think I will stick with your first solution but keeplinstead ofcin themulticolumnfunction. – jalalhugo Jul 04 '14 at 15:03\footcite{}in this glossary entries did not print yet in the footer. An idea ? – Zouib Jul 08 '15 at 16:21\footcite. You can link back to this question. – Nicola Talbot Jul 09 '15 at 11:43