我想提一下,我的一位合作者在 X 大学期间曾完成过我所展示的一些工作,但后来转到了 Y 大学。
有没有一种简单的方法可以使用 institute 命令来做到这一点?
这是我目前在 MWE 中拥有的内容。部分工作由作者 BBB 在研究所 1 完成,但后来转移到研究所 3。
\documentclass{beamer}
\author[Benjamin H.M. Tan]{AAA\inst{2}, BBB\inst{1,3}, \\ \textbf{Benjamin H.M. Tan}\inst{1,2}, CCC\inst{1}}
\institute[X, Y, Z]{\inst{1} University X \\ \inst{2} University Y \\ \inst{3} University Z}
\title[QWERTY]{QWERTY}
\date{\today}
\begin{document}
\maketitle
\end{document}
提前致谢!
答案1
应该再仔细考虑一下。在这种情况下,一个脚注就足够了。
\documentclass{beamer}
\renewcommand{\thefootnote}{\fnsymbol{footnote}} % To get symbols for footnote, used [2] as option for the dagger symbol
\author[Benjamin H.M. Tan]{AAA\inst{2}, BBB\inst{3,},\footnote[2]{Part of this work was done at University X.} \\ \textbf{Benjamin H.M. Tan}\inst{1,2}, CCC\inst{1}}
\institute[X, Y, Z]{\inst{1} University X \\ \inst{2} University Y \\ \inst{3} University Z}
\title[QWERTY]{QWERTY}
\date{\today}
\begin{document}
\maketitle
\renewcommand*{\thefootnote}{\arabic{footnote}} % To reset the footnotes to numbers
\setcounter{footnote}{0} % Set counter back to 0
\end{document}