请帮忙,我被要求修改一份手稿的 .tex 文件。问题是我想添加“supervised by ...”作为脚注,但在 \author{} 中使用 \footnote{supervised by ...} 时不起作用。我使用 Latex lncs 格式。谢谢!
答案1
正确的方法是使用\thanks
,而不是\footnote
:
\documentclass[runningheads]{llncs}
\usepackage{kantlipsum}
\begin{document}
\title{LaTeX Template for Your LNCS Paper}
\author{Author 1\thanks{Supervised by Author 9}, Author 2}
\institute{Lab, University, Address}
\maketitle
\begin{abstract}
Abstract is here.
\end{abstract}
\section{Introduction}\label{sec:Introduction}
The rest goes here.
\kant
\end{document}
我还添加了该runningheads
选项只是为了表明包含作者姓名的标题不受的影响\thanks
。
第一页
第二页
答案2
您可能需要\protect
命令\footnote
。这个对我有用:
\documentclass{llncs}
\begin{document}
\title{LaTeX Template for Your LNCS Paper}
\author{Author 1\protect\footnote{Supervised by Author 9}, Author 2}
\institute{Lab, University, Address}
\maketitle
\begin{abstract}
Abstract is here.
\end{abstract}
\section{Introduction}\label{sec:Introduction}
The rest goes here.
\end{document}