I would like to make a back reference from every chapter title in my document to the table of contents, that is to say that clicking on a title would lead to the display of the table of contents.
This could be applied generally for each kind of sections and could be useful to go back rapidly to the table of contents after going to the wrong chapter to be read.
I put the following in my document:
Code: Select all
\renewcommand{\contentsname}{Table of Contents}
\setcounter{tocdepth}{4}
\clearpage
\phantomsection
\addcontentsline{toc}{chapter}{Table of Contents}
\tableofcontents
\label{Table of Contents}
\chapter{Introduction}
must be replaced. I would imagine something like the following, but working: Code: Select all
\hyperref[ref{Table of Contents}] {\chapter{Introduction}}
Thank you.
Regards.