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

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

User avatar
Stefan Kottwitz
Site Admin
Posts: 10348
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