我有以下代码:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{hyperref}
\hypersetup{
colorlinks=true,
linkcolor=blue,
filecolor=magenta,
urlcolor=cyan,
pdftitle={Overleaf Example},
}
\begin{document}
\section{Introduction}
The Table \hyperlink{mark}{1} are in the appendix of this article.
\newpage
\section*{Supplementary archive}
The supplementary material can be accessed at this \hyperlink{mark}{link}.
\end{document}
我想点击表格编号“1”,然后重定向到单词“link”(在文档末尾),以访问文章的补充文件。我该怎么做?提供的代码不能满足我的要求。