I am not new to Latex, but actually can't solve one issue myself.
Somehow I can't use \label and \ref togehther with hyperlinks...
The thing is I'd like to make some kind of newsletter.
One sidebar shall give an overview about the topics, including hyperlinks:
Code: Select all
\hypertarget{contents}{\textbf{{\large Overview\ldots}}}
\begin{itemize}
\item \hyperlink{news1}{Topic A}
\item \hyperlink{news2}{Topic B}
\item \hyperlink{news3}{Topic C}
...
\end{itemize}
Code: Select all
\hypertarget{news1}{\heading{Topic A}{6pt}}
...
\hypertarget{news2}{\heading{Topic B}{6pt}}
...
\hypertarget{news3}{\heading{Topic C}{6pt}}
That is why I would like to use some kind of labels and references.
The big question is: how?
Any hint is welcome.
Thomas