Same question as this one but regarding the acro package.
How shall I prevent expansion in section, title and ToC?
MWE
%\documentclass{book}
\documentclass{article}
\usepackage{acro}
\DeclareAcronym{asset}{%
short=asset,
long= underlying asset,
}
\DeclareAcronym{assetclass}{%
short=asset class,
long=asset class,
}
\begin{document}
%\acresetall
\tableofcontents
%\chapter{\Ac{asset} vs \ac{assetclass}}
\section{Don't get confused between \ac{asset} and \ac{assetclass}}
This is the demonstration of the usage of \ac{asset}---which is not to be confused with \ac{assetclass}.
\printacronyms
\end{document}


\Ac*– cgnieder Jan 25 '22 at 18:32