i'm currently writing my thesis, i used the glossary package for my acronyms list, but i dont get the result that i want, i have space between each acronym which i dont want it , i'm newbie in this package and have limited knowledge in it , could you plese help me to reduce the space . This my latex code that i used :
\documentclass{report}
\usepackage{graphicx}
\usepackage[colorlinks]{hyperref}
\usepackage[savewrites,nopostdot,toc,acronym,symbols]{glossaries}
\usepackage{glossary-mcols}
\usepackage{glossary-longragged}
\newacronym{CICS}{CICS}{Customer Information Control System}
\newacronym{EHDM}{EHDM}{Enhanced Hierarchical Development Methodology}
\newacronym{ASF}{ASF}{Algebraic Specification Formalism}
\newacronym{ProCos}{ProCos}{Provably Correct Systems}
\newacronym{HOL}{HOL}{Higher Order Logic}
\newacronym{LOTOS}{LOTOS}{Language Of Temporal Ordering Specification}
\newacronym{CCS}{CCS}{Calculus of Communicating Systems}
\newacronym{CSP}{CSP}{Communicating Sequential Processes}
\newacronym{RAISE}{RAISE}{Rigorous Approach to Industrial Software Engineering}
\newacronym{VDM}{VDM}{Vienna Development Method }
\makeglossaries
\begin{document}
\tableofcontents
\chapter{Sample}
This is a sample document that uses the dummy glossary entries
supplied with the glossaries bundle for testing.
\gls{ASF} \gls{CICS}
Here are all the entries (including acronyms):
\gls{ASF} \gls{CICS} \gls{CSP} \gls{ProCos}
\gls{VDM} \gls{RAISE} \gls{CCS} \gls{ASF}
\gls{HOL} \gls{EHDM}
\printglossary[type=acronym,style=super]
\end{document}
and my output result
Could you please help me ?

nogroupskipto the\usepackage{glossaries}line. – Pieter van Oostrum Nov 17 '16 at 16:44