I'm using the acronym package and I'm trying to add generic styling. Specifically, I want the first mention of the acronym to expand the long form in italics.
What I've done so far is to say:
\acrodef{label}[short]{\textit{long form}}
And that seems to work as long as you don't need to repeat the long form (which I don't). However it clashes when you need the plural form \acp{lable}, as the plural "s" will not be typeset in italics:
long forms <- wrong
long forms <- correct
Is there a way to tell the acronym package to typeset the long form in italics?