I am using the glossaries package with long style. However I don't want the entries to be so tight one to another.
Minimal code:
\documentclass{book}
\usepackage{glossaries}
\newglossarystyle{customlong}{
\glossarystyle{long}
% I use this to prevent a different vertical spacing from x2 to y than from x1 to x2
\renewcommand{\glsgroupskip}{}
}
\makeglossaries
\newglossaryentry{x1}{name={x1},description={first term}}
\glsadd{x1}
\newglossaryentry{x2}{name={x2},description={second term}}
\glsadd{x2}
\newglossaryentry{y}{name={y},description={third term}}
\glsadd{y}
\begin{document}
test document
\newpage
\printglossary[type=main,style=customlong]
\end{document}
How can I increase the vertical space between entries?
Thanks.