General ⇒ Create PDF Navigation Links
-
- Posts: 156
- Joined: Sat Jan 22, 2011 9:55 pm
Create PDF Navigation Links
If so, how can I set it to create them (my document is getting really long)?
Thanks.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
-
- Posts: 162
- Joined: Wed Jun 17, 2009 10:18 pm
Create PDF Navigation Links
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
