答案1
在缺少 MWE 的情况下,这是一个使用article
类的快速而粗糙的解决方案……
\documentclass{article}
\newcommand{\repeatthanks}{\textsuperscript{\thefootnote}}
\begin{document}
\title{Title}
\author{Author1\thanks{Text}, Author2\repeatthanks}
\maketitle
\end{document}
\thanks
仅当中间没有其他东西时它才会起作用。
答案2
该类llncs
的处理方式\thanks
与标准类不同。但是一些技巧使之成为可能。
\documentclass[runningheads]{llncs}
\usepackage{etoolbox}
\usepackage{kantlipsum} % just for the example
\newcommand{\repthanks}[1]{\textsuperscript{\ref{#1}}}
\makeatletter
\patchcmd{\maketitle}
{\def\thanks}
{\let\repthanks\repthanksunskip\def\thanks}
{}{}
\patchcmd{\@maketitle}
{\def\thanks}
{\let\repthanks\@gobble\def\thanks}
{}{}
\newcommand\repthanksunskip[1]{\unskip{}}
\makeatother
\begin{document}
\title{LaTeX Template for Your LNCS Paper}
\author{Author 1\thanks{Supervised by Author 9\protect\label{X}}, Author 2\repthanks{X}}
\institute{Lab, University, Address}
\maketitle
\begin{abstract}
Abstract is here.
\end{abstract}
\section{Introduction}\label{sec:Introduction}
The rest goes here.
\kant
\end{document}
您需要在想要重复的命令\protect\label{<whatever>}
中执行并重复脚注标记。\thanks
\repthanks{<whatever>}
如果有必要,也可以对该部分进行类似的调整\institute
。