views:

27

answers:

2

I have been using the hyperref package and \hyperref[…]{…} to put a clickable link (in a PDF) to a section or subsection. However I want to put the clickable link before i put the \subsection declaration. My first attempt seems to produce a link that goes to the first page. Is there something special you have to do to get the links working before you define them? I am already running latex twice on the command line.

+1  A: 

This seems to be relevant: LaTeX hyperref link goes to wrong page

Andrei
+1  A: 

Actually it was a bug in my code. I had extra trailing whitespace around the \hyperref call, which means it wasn't the same text. If I remove the spaces, and run pdflatex twice, then everything works

Rory