如何使用 hyperref 和 authblk 超链接致谢脚注

如何使用 hyperref 和 authblk 超链接致谢脚注

我希望使用 hyperref 和 authblk 将指向致谢脚注的星号超链接起来。换句话说,我希望星号和文本中任何枚举的脚注一样,是蓝色的,这样读者单击星号即可转到脚注。以下代码可以完成这项工作,但不允许使用 authblk。任何想法都值得赞赏。

\documentclass[11pt]{article}
%\usepackage[affil-sl]{authblk}
\usepackage[pdftex, bookmarksnumbered=true, bookmarksopen=true, bookmarksopenlevel=1, colorlinks=true, allcolors=blue, pdfstartview={FitH}]{hyperref}


\begin{document}

\title{\textbf{This is the Title}}
\author{\textbf{Myself}\hyperlink{myth}{\parbox{3pt}{\footnotemark[1]}} \\
    A University \\
    \href{mailto:[email protected]}{[email protected]}}
\date{\today}
\maketitle

\let\oldthefootnote\thefootnote
\renewcommand{\thefootnote}{\fnsymbol{footnote}}
\footnotetext[1]{\phantomsection\hypertarget{myth}{I thank X, Y and Z for valuable comments.}}
\let\thefootnote\oldthefootnote

\begin{abstract}
    This is the abstract.
\end{abstract}

This is the text\footnote{This is a hyperlinked footnote.}.

\end{document}

相关内容