\begin{document}
), but it doesn't work, the symbol (eventually empty) and the comma are always printed. Where am I wrong? The acronym definition form is:\newacronym[symbol={Symbol1}]{key1}{Acro1}{Definition1}
or
\newacronym{key2}{Acro2}{Definition2}
Code: Select all
\renewcommand*{\glossaryentryfield}[5]{%
\glsentryitem{##1}% %% Counter increment
\glstarget{##1}{##2} &% %% The acronym
\ifx\@glo@symbol\@empty% %% If present, the symbol
\relax
\else
\textit{##4}, %
\fi
##3 \\% %% The definition
}