I need to build page that is sort-of like an index ... but it isn't exactly an index.
I pretty much accomplished what I want using \label{some unique ID} to capture the page number ... and \pageref{some unique ID} to print that page number.
However, in the following MWE, \pageref is indeed printing the correct page number ... but it's linking to an incorrect page (It's linking to the first page of the chapter that contains the page of some unique ID).
I'd like to either (a) turn it's linking off (since my hyperlink is using the correct hypertarget anyway, ... or (2) fix it to link to the correct page.
Thanks for your help with this one !!!!
%&pdf laTeX
% !TEX encoding = UT F-8 Unicode
\documentclass[letter, 12pt]{book}
\usepackage{hyperref}
\newcommand{\mylink}[2]{ \hypertarget{#1}{#2} \label{#1}}
\begin{document}
\chapter*{Chapter One}
\mylink{key for link 1}{This} text on page one.
\newpage
\mylink{key for link 2}{This} text on page two.
\newpage
\mylink{key for link 3}{This} text on page three.
\newpage
\noindent \hyperlink{key for link 1} {Item 1} ............ pg \pageref{key for link 1}\\
\noindent \hyperlink{key for link 2} {Item 2} ............ pg \pageref{key for link 2}\\
\noindent \hyperlink{key for link 3} {Item 3} ............ pg \pageref{key for link 3}\\
\end{document}