I want to create hyperlinks to the items of a etaremune or revnum environment. It works with the enumerate environment, but how can I do the same with a list with reverse numbering?
Here is an example in which only the hyperlinks to the enumerate environment work.
\documentclass[a4paper,10pt]{article}
\usepackage{etaremune}
\usepackage{revnum}
\usepackage{hyperref}
\begin{document}
\begin{enumerate}
\item aaa \label{1}
\item bbb \label{2}
\end{enumerate}
\begin{etaremune}[start=4]
\item ccc \label{4}
\item ddd \label{3}
\end{etaremune}
\begin{revnumerate}[6]
\item eee \label{6}
\item fff \label{5}
\end{revnumerate}
\ref{1}, \ref{2}, \ref{3}, \ref{4}, \ref{5}, \ref{6}
\end{document}
In the correspondig pdf, the \ref{3} and \ref{4} do not link to the line 3. ddd and 4. ccc as they should but to the last item of the enumerate environment, that is the line 2. bbb.


Do you see a different behavior?
– user47026 Feb 28 '14 at 00:38