Hyperref: Wie erzeuge ich einen Hyperref?
Hallo,
wie kann ich bei diesem Beispiel einen Hyperref erzeugen? Nach dem "Blindtext" habe ich ein "c" eingefügt (mathematische schreibweise) wie kann ich dieses c mit dem c vom Abkürzungsverzeichnis verlinken?
\documentclass[12pt,twoside]{report}
\usepackage[a4paper, top=25mm, bottom=27mm, left=35mm, right=30mm, bindingoffset=0mm]{geometry}
\usepackage[hyperref = true, only-used = false, list-style = longtable]{acro}
\usepackage{amsmath}
\usepackage{enumitem}
\usepackage{multicol}
\usepackage[math]{blindtext}
\newlist{acronyms}{description}{1}
\setlist[acronyms]{
labelwidth = 4.5em,
leftmargin = 5em,
noitemsep,
itemindent = 0pt}
\DeclareAcroListStyle{mystyle}{list}{ list = acronyms }
\acsetup{ list-style = mystyle }
\DeclareAcronym{b}{
short = \ensuremath{b},
long = Dyadic Translation,
sort = 0002,
class = nomencl}
\DeclareAcronym{c}{
short = \ensuremath{c},
long = Speed of Sound,
sort = 0003,
class = nomencl}
\DeclareAcronym{EffElas}{
short = \ensuremath{E},
long = Effective Elastic Modulus,
sort = 0005,
class = nomencl}
\DeclareAcronym{g}{
short = \ensuremath{g},
long = High-Pass Filter (Wavelet Transform),
sort = 0007,
class = nomencl}
\begin{document}
\chapter*{Nomenclature}
\section*{Characters \& Symbols}
\begin{flushleft}
\begin{multicols}{2}
\printacronyms[include-classes=nomencl, heading=none]
\end{multicols}
\end{flushleft}
%aufrufe:
\ac{c}\\
\acfp{c}\\
\aclp{c}\\
%Blindtext:
\blindmathpaper $ c $
\end{document}