I use the acro package for abbreviations in my thesis. How can I add the list of abbreviations to the table of contents?
\documentclass{article}
\usepackage{acro}
\DeclareAcronym{bla}{
short = BLA,
long = BBBLLLAAA,
class = A
}
\DeclareAcronym{foo}{
short = FOO,
long = FFFOOOOOO,
class = B
}
\begin{document}
\tableofcontents
\cleardoublepage
\printacronyms[include-classes=A,name=Abbreviations]
\printacronyms[include-classes=B,name=Nomenclature]
\ac{bla}
\end{document}