可点击链接返回目录

可点击链接返回目录

关于如何使内容可点击,有很多问题和答案Table of Contents。我想知道如何引用Table of Contents并在文档的其他位置创建链接,以便单击并返回目录。

我尝试Table of Contents通过它给出自己的标签\tableofcontents\label{toc}然后使用参考链接\ref{toc}但这会产生错误:./project.tex:133: Package hyperref Warning: Suppressing empty link on input line 133.

答案1

这可以通过超目标超级链接来自超链接包。请参见下面的示例:

\documentclass{article}
\usepackage{hyperref}

\begin{document}
Title Page\newpage

% Add a link target to the TOC itself
\addtocontents{toc}{\protect\hypertarget{toc}{}}

% Print the TOC
\tableofcontents
\newpage

% Sections with a hyperlink to TOC
\section[One]{One. Go to \hyperlink{toc}{TOC}}
Text that points to \hyperlink{toc}{Table of Contents}.

\end{document}

答案2

像这样:

\documentclass{book}


\usepackage{hyperref}

\begin{document}

\phantomsection 
\hypertarget{MyToc}{}  % Make an anchor to the toc
\tableofcontents

\chapter{Dummy}


\chapter{Yet another Dummy}

Jump to my incredible \hyperlink{MyToc}{Table of contents}

\end{document}

随意更改相关的documentclass。

在此处输入图片描述

相关内容