Considere o seguinte exemplo onde a questão é incorporada:
\documentclass{article}
\usepackage{enumitem}
\usepackage{bookmark}
\usepackage{hyperref}
\begin{document}
\section{The first section}
A list of entries where different bookmarks point to each entry.
\begin{enumerate}
\item Bookmark~$1$ has to point at this entry in the list and be
of `subsection' depth under the first section in the bookmark tree.
\item Bookmark~$2$ has to point at this entry in the list and be
of `subsection' depth under the first section in the bookmark tree.
\item \dots
\end{enumerate}
\end{document}
Como faço para conseguir isso? (Por favor, deixe-me saber se a pergunta não estiver clara.)
Responder1
\documentclass{article}
\usepackage{enumitem}
\usepackage{bookmark}
\usepackage{hyperref}
\begin{document}
\section{The first section}
A list of entries where different bookmarks point to each entry.
\begin{enumerate}
\item \bookmark[dest=\csname @currentHref\endcsname]{to item 1}Bookmark~$1$ has to point at this entry in the list and be
of `subsection' depth under the first section in the bookmark tree.
\item \bookmark[dest=\csname @currentHref\endcsname]{to item 2}Bookmark~$2$ has to point at this entry in the list and be
of `subsection' depth under the first section in the bookmark tree.
\item \dots
\end{enumerate}
\end{document}