llncs:分离的作者

llncs:分离的作者

我如何llncs在像下面示例这样的环境中分别创建作者?在此处输入图片描述

我使用以下命令在一行中完成了它,但我不知道如何分别完成它们:

\author{
 ABC\inst{1} 
 \and XYZ\inst{1},
}

\institute{
Institute ABC\\ 
\email{ mail@mail }\thanks{Additional note}
}

答案1

许多期刊都有模板,投稿作者可以以标准化的方式输入他们的标题和个人信息。这使得期刊编辑的工作更加轻松。一个期刊中所有文章的标题整体看起来都相似,这是一个重要特征。

如果你不想投稿给期刊,就不要使用他们提供的模板。最实用的方法是使用标准文章类别并手动定义标题之类的内容。

zivaSpringerTemplate标题

\documentclass{article}
\usepackage{blindtext}
\usepackage{url}
\DeclareUrlCommand\email{\urlstyle{sf}}
\begin{document}
\begingroup%titlestuff
{\Large\centering \bfseries
    Salsa dancing Sloths \par%
}\vspace{.8cm}
\begin{center}
    \sffamily
    \begin{minipage}{.4\textwidth}
        \centering
        Saar Cohen\\
        School of Computer Science\\
        \email{[email protected]}
    \end{minipage}\hspace{.1\textwidth}
    \begin{minipage}{.4\textwidth}
        \centering
        Yossi Matias\\
        School of Computer Science\\
        \email{[email protected]}
    \end{minipage}
\end{center}
\endgroup%endtitlestuff

\section{rock around the duck}
\blindtext
\end{document}

This is not the most robust approach though. Some more
information on how to change the appearence of a title, or more
prcisely titlepage, can be found in [How to customize a title
page]().

相关内容