如何在 LNCS 模板中设置作者?

如何在 LNCS 模板中设置作者?

我想在 LNCS 论文中设置作者和电子邮件,但我不知道正确的方法是什么。我试过这个:

\author{FirstAuthor LastName, Second Author LastName}

问题是我尝试了不同的方法来设置电子邮件和机构,但文档崩溃了。有没有人知道如何正确设置这些参数,以便得到如下结果:

(*)

FirstAuthor LastName, Second Author LastName
    [email protected]      [email protected]
                 Institution

更新

我尝试过这个:

\author{FirstAuthor LastName \inst{1} \and SecondAuthor LastName \inst{2}}

%If there are too many authors, use \authorrunning
%\authorrunning{First Author et al.}

\institute{
Insitute 1\\
\email{[email protected]}\and
Insitute 2\\
\email{[email protected]}
}

但我不明白 (*) 风格。

提前谢谢大家!

答案1

根据作者对计算机科学讲稿的说明,您必须使用\email{<email address>}within \institute{},因此您应该不是获得您想要的风格(*)。

编译 llncs.doc(尽管扩展名不同,但实际上是一个 LaTeX 文件)以pfdlatex查看作者的说明。

llncs.dem这是从(也是 LaTeX 文件) 中提取的 MWE :


平均能量损失


\documentclass{llncs}
\begin{document}
\title{Hamiltonian Mechanics unter besonderer Ber\"ucksichtigung derh\"ohreren Lehranstalten}
\author{%
Ivar Ekeland\inst{1}  \and 
Roger Temam\inst{2}
Jeffrey Dean \and 
David Grove \and 
Craig Chambers \and 
Kim~B.~Bruce \and
Elsa Bertino
}%
\institute{
Princeton University, Princeton NJ 08544, USA,\\
\email{[email protected]},\\ 
WWW home page:
\texttt{http://users/\homedir iekeland/web/welcome.html}
\and
Universit\'{e} de Paris-Sud,
Laboratoire d'Analyse Num\'{e}rique, B\^{a}timent 425,\\
F-91405 Orsay Cedex, France}
\maketitle      
\end{document}

(*)如果您想将该风格用于个人用途,那么最好从标准类开始article


平均能量损失


\documentclass{article}
\date{}
\def\email#1{\texttt{#1}}

\begin{document}
\title{Hamiltonian ...}
\author{%
Ivar Ekeland\\ \email{[email protected]}  \and 
Elsa Bertino\\ \email{[email protected]}
}%

\maketitle      
\end{document}

相关内容