I need to remove the dots after the abbreviations in the list of abbreviations. I am using the ACRO package.
My minimum working example (MWE) looks like this:
\documentclass[12pt,a4paper]{scrartcl}
\usepackage{longtable}
\usepackage[utf8]{inputenc}
\usepackage{acro}
\usepackage{hyperref}
\usepackage{cleveref}
\usepackage{enumitem}
\hypersetup{colorlinks=true,urlcolor=blue,linkcolor=black,citecolor=black,filecolor=black}
\DeclareInstance{acro-page-number}{dotfill}{default}{
punct = true,
punct-symbol = \dotfill
}
\acsetup{
list-type = table,
list-style = longtable,
list-table-width=\linewidth,
pages = first,
page-name = ,
pages-name = ,
page-ref = dotfill
}
\DeclareAcronym{TEX}{%
short = TEX,
long = LaTeX,
extra = (just gettin started)
}
\begin{document}
\tableofcontents
\printacronyms
\newpage
\section{l NEED SOME HELP}
A \ac{TEX} is such a nice thing nowadays. Nevertheless, I have no clue what to do to solve this problem.
\end{document}


