[Tex/LaTex] How to make a clickable Table of Contents?

hyperreflinkstable of contents

Possible Duplicate:
How to make clickable links and cross-references in pdfs produced by LaTeX?

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

I tried the package url unsuccessfully.

Best Answer

\usepackage{hyperref}
\hypersetup{
    colorlinks,
    citecolor=black,
    filecolor=black,
    linkcolor=black,
    urlcolor=black
}

You can change the color of the links as above.

Related Question