tags:

views:

3487

answers:

4

I need links for Table of Contents, so that I can navigate fast to different sections. I apparently need some package.

I tried the package url unsuccessfully.

+9  A: 

The way to go is the hyperref package.

Fabian Steeg
why do heading and subheadings not work? When I export with those, as I recall, they link?
ccook
Sorry ccook, I don't understand what you are asking.
Fabian Steeg
+4  A: 

Don't miss out on the

\hypersetup{linktocpage}

option to only link the page numbers and not the entire table of contents; when links are being coloured the default behaviour can be a bit overwhelming.

Will Robertson
Not true. It's better when the entire line links.
alamodey
As clickable links, it's better to have the entire line. But if you've got links printed in hot pink, then it looks mighty ugly to have an entire page coloured like that.
Will Robertson
+5  A: 
\usepackage{hyperref}
\hypersetup{
    colorlinks,
    citecolor=black,
    filecolor=black,
    linkcolor=black,
    urlcolor=black
}

You can change the color of the links as above.

alamodey
+1 Since this works great :)
Johan
A: 

thanks very much alamodey this solved a problem for me too.

eneville