It appears that when using the acronym package, a link including the page number is only created in the list of acronyms
when using \acf, but not with \acs nor \acl.
This is a problem in the following case where I'd like to introduce an acronym like this:
\acs{TMS}, which was originally introduced as abbreviation for \acl{TMS}, can be used to ...
Is there a way to make \acs or \acl produce a link to this line in the list of acronyms?
Minimal Example
\documentclass{scrartcl}
\usepackage[printonlyused, withpage]{acronym}
\renewcommand{\bflabel}[1]{\normalfont{\normalsize{#1}}\hfill}
\begin{document}
\section{Body}
\acs{TMS}, which was originally introduced as abbreviation for \acl{TMS}, can be used to ...
The \acf{AWL} works.
\section{Somewhere else...}
\begin{acronym}[abc]
\acro{TMS}{This Means Nothing} % has no page number in list of acronyms :(
\acro{AWL}{Acronym With Link}
\end{acronym}
\end{document}
