IEEEtran 会议模板中具有共同隶属关系的多位作者

IEEEtran 会议模板中具有共同隶属关系的多位作者

我有一篇论文,其中有 4 位作者,他们有共同的隶属关系。我想列出他们的名字,然后列出一个隶属关系,最后列出个人邮件地址。我已附上我拥有的代码和我想要的格式快照。我正在使用 TexStudio,但对 LaTeX 还不熟悉。请帮助我,告诉我 \author 的正确用法。

\documentclass[conference]{IEEEtran}
\begin{document}

\title{CNFET-Based 0.1 V to 0.6 V DC/DC Converter}


% author names and affiliations
% use a multiple column layout for up to three different
% affiliations
\author{\IEEEauthorblockN{Aditya Tyagi}
\IEEEauthorblockA{School of Electrical and\\Computer Engineering\\
Georgia Institute of Technology\\
Atlanta, Georgia 30332--0250\\
Email: http://www.michaelshell.org/contact.html}
\and
\IEEEauthorblockN{Homer Simpson}
\IEEEauthorblockA{Twentieth Century Fox\\
Springfield, USA\\
Email: [email protected]}
\and
\IEEEauthorblockN{James Kirk\\ and Montgomery Scott}
\IEEEauthorblockA{Starfleet Academy\\
San Francisco, California 96678-2391\\
Telephone: (800) 555--1212\\
Fax: (888) 555--1212}}
\end{document}

这就是我想要的。

答案1

我建议你使用“长格式”建议文档,并将其与\IEEEauthorrefmark附加脚注符号结合起来,将各部分信息联系在一起:

示例输出

\documentclass[conference]{IEEEtran}

\begin{document}
\title{An Important Conference Contribution}

\author{\IEEEauthorblockN{Author One\IEEEauthorrefmark{1},
Author Two\IEEEauthorrefmark{2}, Author Three\IEEEauthorrefmark{3} and
Author Four\IEEEauthorrefmark{4}}
\IEEEauthorblockA{Department of Whatever,
Whichever University\\
Wherever\\
Email: \IEEEauthorrefmark{1}[email protected],
\IEEEauthorrefmark{2}[email protected],
\IEEEauthorrefmark{3}[email protected],
\IEEEauthorrefmark{4}[email protected]}}
\maketitle

\end{document}

答案2

如果有多个作者,且其中一人或多人有多个隶属关系:

使用包

\usepackage{authblk}

然后,在作者的位置:

\author[1]{FN1 LN1}
\author[1,2]{FN2 LN2}
\affil[1]{University of Southern California, Los Angeles, CA \authorcr Email: {\tt \{uid1, uid2\}@usc.edu}\vspace{1.5ex}}
\affil[2]{NASA Jet Propulsion Laboratory, Pasadena, CA \authorcr Email: {\tt [email protected]} \vspace{-2ex}} 

注意\vspace{1.5ex}\vspace{-2ex}调整垂直空间填充。

相关内容