嘿,各位 LaTeX 用户。
有什么方法可以让文档中的页码hyperref
返回到目录的页眉吗?
这对我的文件非常有用,这样我就可以快速地在目录中来回跳转。
答案1
\label
您可以在之前添加一个\tableofcontents
,以便通过 进行索引和链接hyperref
。这是一个简单的例子:
\documentclass{report}
\usepackage{hyperref}
% Set up the header and footer
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
\fancyfoot[CO]{\thepage}
\renewcommand{\headrulewidth}{0pt}
% Put the link in the header
\fancyhead[RO]{This is a link to the~\hyperref[toc-contents]{\textbf{Table of Contents}}}
% This fills the document with dummy text
\usepackage{blindtext}
\begin{document}
\label{toc-contents}
\tableofcontents
\blinddocument
\end{document}
页面顶部如下所示:
单击粗体文本将带您进入目录。
当然,fancyhdr
如果您有其他喜欢的或正在使用的软件包,那么您可以使用除了在标题中设置链接之外的其他方法。
预计到达时间:我确实应该更仔细地阅读这个问题。如果你想页码链接到目录,然后将上面的页眉/页脚代码替换为
% Set up the header and footer
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
\renewcommand{\headrulewidth}{0pt}
% Put the link in the footer
\fancyfoot[CO]{\hyperref[toc-contents]{\thepage}}