Titlepage
I wrote a titlepage like usual but I have supervisors from different universities. In order to provide the reader this information, I thought of writing the following possibilities:
Using standard footnotes
Prof. A\footnote{University A}, Prof. B\footnote{University B}
This worked perfectly, except for the fact that the footnote was on the titlepage. This looked strange to have a footnote on the titlepage.
After that thought of using
\thanks{University xy}but with this no footnotes appear at all.In the end, I found a similar question on stackexchange. It makes use of the commands
\textsuperscript{1}and\footnotetext[1]{University xy}. This worked best as I can write the footnote text on the following page.
The third version as a MWE:
\documentclass[10pt,a4paper,twoside,openright,final,onecolumn,titlepage]{book}
\usepackage{hyperref}
\newcommand{\mytitlepage}{%
\begin{titlepage}
{\large under the supervision of}\vskip 1mm%
{\large Dr. A\textsuperscript{1}}\vskip 1mm%
{\large Prof. B\textsuperscript{1}}\vskip 1mm%
{\large Prof. C\textsuperscript{2}}
\end{titlepage}
}
\begin{document}
\mytitlepage
\footnotetext[1]{University A}
\footnotetext[2]{University B}
\end{document}
Question
How can I still provide hyperlinks to the footnotes? Or maybe more general what is the LaTeX-way to do it?