I am facing a strange issue I am struggling with.
I am using \acro to define my acronyms. For about 90% it works. The list of acronyms is included and each acronym is a clickable link. However, for three (see below) this only throws an undefined error. Any idea what could be the problem?
I already deleted and rewrote the lines, I check spelling etc., nothing seems to solve it...
Anyone any idea?
Thanks
Tom
Code: Select all
\usepackage{hyperref} % Clickable links\usepackage[printonlyused]{acronym} %Abbreviations\hypersetup{final}\begin{document}\begin{acronym}%those work\acro{DSG}{Datenschutzgesetz}\acro{VDSG}{Verordnung zum Bundesgesetz über den Datenschutz}% those throw an error about hyperlink not defined\acro{revDSG}{revisioniertes Datenschutzgesetz}\acro{ISG}{Informationssicherheitsgesetz}\acro{BÜPF}{Bundesgesetz betreffend die Überwachung des Post- und Fernmeldeverkehrs}\end{acronym}Rechtlich\begin{itemize}[leftmargin=*]\item \ac{revDSG}\item \ac{ISG}\item \ac{DSG}\item \ac{VDSG}\item \ac{BÜPF}\end{itemize}\end{document}