带有 hyperref 的 Fancyhdr 页脚,链接区域是整个页脚,而不是所需的文本

带有 hyperref 的 Fancyhdr 页脚,链接区域是整个页脚,而不是所需的文本
\documentclass[12pt,a4paper,oneside]{report}
\title{Notes}
\date{2020\\ July}
\author{John Doe}

\usepackage{hyperref}

\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyfoot[R]{\hyperlink{toc}{{\tiny Table of Contents}}}

\usepackage{blindtext}
\begin{document}
\maketitle
\tableofcontents

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

\chapter{Pre Flight}
\blindtext
\section{section one}
\blindtext
\blindtext
\blindtext
\end{document}

我希望文本“目录”链接回目录,但链接区域当前偏移到其上方的区域,即蓝色部分: 在此处输入图片描述

相关内容