I am writing this post in hope to find a solution to an issue I've been facing with REVTex which I haven't been able to find a solution for.
What I'm trying to achieve is to have two footnote marks leading to the same footnote, where one of the footnotes is generated using the \homepage[]{} macro on the title.
The minimal working example of a solution I've tried so far, that was the one recommended by countless places on the internet, is as follows:
Code: Select all
\documentclass[%
reprint,
nofootinbib,
amsmath,amssymb,
aps,
]{revtex4-2}
\usepackage{hyperref} % Add hypertext capabilities
\hypersetup{
colorlinks=true,
linkcolor=blue,
filecolor=magenta,
urlcolor=cyan,
}
\begin{document}
\title{Title}
% footnote(s) to article title
\homepage[\label{lb:homepage}Website: ]{https://example.org}
\author{Author}
\date{\today}
\maketitle
sample text
\clearpage
sample text2 and reference: \autoref{lb:homepage}
\end{document}
Although I'm not quite sure that this is a problem with REVTex itself, I haven't been able to find a solution so far, and the fact that I saw this in several places should mean that this works.
Thanks in advance.