I am using the following command to set an entry inside the index referring to another entry in the index with
\index{EntryX|see{EntryY}}
.But how to make EntryY a hypperlink to its location in the index?
Is that doable?
\index{EntryX|see{EntryY}}
.NEW: TikZ book now 40% off at Amazon.com for a short time.
\see
. You not only need the argument of \see
to be a link, you also need to define the target point. This can be done using \hypertarget
and \hyperlink
like this:
Code: Select all
\index{Entry Y@\hypertarget{Entry Y}{Entry Y}}
\index{Entry X|see{\hyperlink{Entry Y}{Entry Y}}}
NEW: TikZ book now 40% off at Amazon.com for a short time.