Closed peanutfun closed 4 years ago
What you're looking for actually exists and is called first-style
:
\documentclass{article}
\usepackage{acro}
\NewAcroTemplate{long-short-phy}{%
\acrowrite{long} \acrowrite{short}%
}
\DeclareAcronym{density}{
short = \ensuremath{\rho},
long = density ,
first-style = long-short-phy
}
\begin{document}
The \ac{density} is defined as $\ac{density} = 1$, a very convenient value of \acl{density}!
\end{document}
I want to use the
acro
package for formula symbols. Their names and the symbols themselves are usually written without parentheses. However, I do not find a "proper" way of doing this withacro
. One can define custom templates and insert them for the first or the single use viafirst-style
andsingle-style
, respectively, but there seems to be no way of changing thefull
style.Example:
What I want:
What I get:
Ideally, I would like to set something like
There are workarounds, e.g. using
acl{density} acs{density}
, but this defeats the purpose of the package in my perception.Would it be possible to add an option
full-style
for specifying templates for the full version of the acronym?