Page Layoutmake links to table of contents

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
bci24sg22
Posts: 4
Joined: Sun Mar 22, 2009 4:42 am

make links to table of contents

Post by bci24sg22 »

How can i make from table of contents links to let me go the specific page? Any example would be very appreciated! ;)

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
Stefan Kottwitz
Site Admin
Posts: 10320
Joined: Mon Mar 10, 2008 9:44 pm

make links to table of contents

Post by Stefan Kottwitz »

Hi,

just use the hyperref package, for example:

Code: Select all

\documentclass[a4paper,10pt]{article}
\usepackage{hyperref}
\begin{document}
\tableofcontents
\clearpage
\section{Test}
Text
\end{document}
See its documentation.

Stefan
LaTeX.org admin
Post Reply