Can Latex create a PDF file which contains the links in Reader's navigation pane (on the left)? In other words, it might show my document's setction/subsection/etc. heirarchy with clickable links on the left side of Adobe Reader.
If so, how can I set it to create them (my document is getting really long)?
Thanks.
General ⇒ Create PDF Navigation Links
-
- Posts: 156
- Joined: Sat Jan 22, 2011 9:55 pm
Create PDF Navigation Links
Last edited by Singularity on Tue Aug 23, 2011 7:45 pm, edited 3 times in total.
NEW: TikZ book now 40% off at Amazon.com for a short time.

-
- Posts: 162
- Joined: Wed Jun 17, 2009 10:18 pm
Create PDF Navigation Links
Add the hyperref-package to your preamble, i.e.
Note that, with a few exceptions, this package should be loaded last.
Also note that this will cause all cross references and citations in you document to become clickable links, and they will be highlighted by a red frame around the word/number. You can disable the red frames by adding hidelinks as an option to the package, i.e.
See the Hyperref manual for more details.
Code: Select all
\usepackage{hyperref}
Also note that this will cause all cross references and citations in you document to become clickable links, and they will be highlighted by a red frame around the word/number. You can disable the red frames by adding hidelinks as an option to the package, i.e.
Code: Select all
\usepackage[hidelinks]{hyperref}
-
- Posts: 156
- Joined: Sat Jan 22, 2011 9:55 pm
Re: Create PDF Navigation Links
Well, that was easy! 
