Possible Duplicate:
Can individual items in an itemize list be labelled and hyperref linked?
\documentclass[11pt,a4paper]{article}
\usepackage[colorlinks=true]{hyperref}
\begin{document}
\ref{itm:tre}
\section{Referenser}
\begin{itemize}
\item \label{itm:tre} item number three
\end{itemize}
\end{document}
Why does it refer to the section and not the item? I want the reference marker to be [3] with a red three, and [3] with black three at the itemlist. Any suggestions?
itemizeis non-numbered, so the items can't be referenced. You wantenumerate. More precisely, please read the documentation on bibliographies. – Stephan Lehmke Nov 20 '12 at 11:51enumerate. It's nearly inconceivable it doesn't work this way. Furthermore, instead of constructing a bibliography by hand like this, it's way better to use the dedicated LaTeX constructs. Please please read the manual. – Stephan Lehmke Nov 20 '12 at 12:37