删除作者列表中的“and”

删除作者列表中的“and”

我试图删除文章标题(类llncs)中最后一位作者姓名前的“and”,以使其看起来像First Author, Second Author, Third Author而不是First Author, Second Author, and Third Author

我在这里找到了解决办法删除两个作者之间的“and”,revtex4-1(建议\def\andname{,}在序言中使用),但它并不适用于我的情况(我实际上检查过 - 它不起作用),因为我的代码看起来像这样

\documentclass{llncs}
\begin{document}
\title{Title}    
\author{
First Author\inst{1}
\and
Second Author\inst{1}
\and
Third Author\inst{2}
}
\institute{
Institute A\\
\email{\{user1,user2\}@domain.tld},\\
\and
Institute B\\
\email{[email protected]}
}
\maketitle

有什么办法可以删除“and”吗?

答案1

如果您知道在哪里寻找,答案就很简单。

\renewcommand{\lastandname}{\unskip,}

答案2

我发现另一个有用的命令如下:

\renewcommand\Authand{}

查看authblk 文档,这可能会有所帮助:

相关内容