如何使作者的电子邮件与其所在机构关联?

如何使作者的电子邮件与其所在机构关联?

我尝试让我的机构直接跟在我的电子邮件后面,让我的老板机构直接跟在他的电子邮件后面。我有以下代码。但是,我仍然先得到我们的机构,然后得到我们的电子邮件?

\documentclass[runningheads,a4paper]{llncs}

\usepackage{amssymb}
\setcounter{tocdepth}{3}
\usepackage{graphicx}

\usepackage{url}
\urldef{\mailsa}\path|[email protected]|
\urldef{\mailsb}\path|{myboss}@uni.ac.uk|
\urldef{\mailsc}\path||
\newcommand{\keywords}[1]{\par\addvspace\baselineskip
\noindent\keywordname\enspace\ignorespaces#1}

\begin{document}

\mainmatter  % start of an individual contribution

% first the title is needed
\title{Title}

% a short form should be given in case it is too long for the running head
\titlerunning{title}

% the name(s) of the author(s) follow(s) next
%
\author{me\inst{1,2} \and myboss\inst{2}}
%
\authorrunning{}
% (feature abused for this document to repeat the title also on left hand pages)

\institute{my institute, my boss institute\\
\mailsa\\
\mailsb\\
\mailsc\\
}

我需要将其在PDF文件中变成如下形式:

My name, boss name
My institute
My email
boss institute
boss email

答案1

最后我解决了。感谢那些对我的问题做出反应的人。通过按如下方式更改 \mailsa\ 位置,代码运行良好:

\institute{My institute
\\
\mailsa\\
\and My boss institute\\
\mailsb\\
\mailsc\\
}

相关内容