Closed dersimn closed 4 years ago
You have mistaken the single
property for the single
option. The former is described as:
single = {<text>}
If provided<text>
will be used instead of the long form if the acronym is only used a single time and the optionsingle
has been set […].
There is still a bug: the single
option works but the single
property is not used :(
\documentclass{article}
\usepackage{acro}
\acsetup{single=true}
\DeclareAcronym{fb}{
single = single description ,
short = foo bar ,
long = fooooooo baaaaaar
}
\begin{document}
\ac{fb}
\printacronyms
\end{document}
No matter if one or two
\ac
appear in the text, and no matter how I specify thesingle
option, it always printsfooooooo baaaaaar (foo bar)
in text.Build with:
If I understand the documentation right, the default is
single = false
i.e. having only one occurrence of an acronym should not put it onto the Acronym list (and only print the long form at this once occurrence)?