I have a simple MWE where I have an acronym that I reference. The first time it puts out the full name with the acronym and every subsequent time it puts out just the acronym. Well that's all find and dandy, but when it puts out the acronym list, the title of the acronym is the abbreviation. I want the full name with the abbreviation to be there (i.e. "minimal working example (MWE)" instead of just "MWE"). It seems that the name of the glossary entry in the acronym section is tied to
\glsentryname (I think).
Code: Select all
\documentclass{report}
\usepackage[acronym,nonumberlist,description]{glossaries}
\newglossaryentry{mwe}
{
type=\acronymtype,
name={MWE},
description={A short example to illustrate a problem},
long={minimal working example},
first={minimal working example (\glsentryname{mwe})}
}
\setglossarystyle{altlist}
\makeglossaries
\begin{document}
\gls{mwe}
\gls{mwe}
\glsaddall
\printglossaries
\end{document}
I've tried fiddling with the name of the acronym, short, long, etc. but can't seem to find the combination that results in my desired behavior.