views:

55

answers:

1

I often generate reports from pdfLaTeX using TeXworks, and would like to generate a document index, which will appear in the sidebar of a PDF viewer, (e.g. evince, Adobe Reader). Are there any packages which will allow me to do so?

+5  A: 

Just add the following to the preamble of your document:

\usepackage[bookmarks]{hyperref}

The bookmarks option generates this "index" by adding bookmarks for sections and lists (of figures, of equations, and so on).

Besides, using this will turn references and urls inside the documents into links, making your document "browseable".

lunaryorn
This works great!
levyd
Thanks for that!
Vivi