IEEE 会议 - 一位作者的双重隶属关系

IEEE 会议 - 一位作者的双重隶属关系

我正在为 IEEE 会议准备相机。

其中一位作者(作者 4)在 A 大学开始了该项目的研究,现在在 C 大学工作。

以下代码是可以接受的展示方式吗? 在此处输入图片描述

\documentclass[letterpaper,10pt,conference]{IEEEtran}

\IEEEoverridecommandlockouts % Don't forget this command!

\begin{document}

\title{Paper Title}}


\author{\IEEEauthorblockN{Author 1}%
  \IEEEauthorblockA{{University A}
    } \and
  
  \IEEEauthorblockN{Author 2}
  \IEEEauthorblockA{Organisation B} \and
  
  \IEEEauthorblockN{Author 3}
  \IEEEauthorblockA{Organisation B} 
  
  \and
  
  \IEEEauthorblockN{Author 4}
  \IEEEauthorblockA{University A}
  \IEEEauthorblockA{University C}

  \and
   \IEEEauthorblockN{Author 5}
  \IEEEauthorblockA{University A} 
  
}

\maketitle

\section{INTRODUCTION}
Hola

\bibliographystyle{IEEEbib}
\bibliography{IEEEabrv,References}

\end{document}

答案1

我认为处理来自同一机构的多位作者的最常见方式如下(正如你从这个问题中看到的):

\documentclass[letterpaper,10pt,conference]{IEEEtran}
\IEEEoverridecommandlockouts % Don't forget this command!

\begin{document}
\title{Paper Title}}

\author{
    \IEEEauthorblockN{
        Author 1\IEEEauthorrefmark{1}, Author 2\IEEEauthorrefmark{2}, Author 3\IEEEauthorrefmark{2}, Author 4\IEEEauthorrefmark{1}\IEEEauthorrefmark{3}, Author 5\IEEEauthorrefmark{1}
    }
    \IEEEauthorblockA{\IEEEauthorrefmark{1} University A}
    \IEEEauthorblockA{\IEEEauthorrefmark{2} Organization B}
    \IEEEauthorblockA{\IEEEauthorrefmark{3} Now at University C}
}

\maketitle
\end{document}

在此处输入图片描述

有几次我实际上看到了与你在问题中所展示的类似的内容,具有相同隶属关系的作者聚集在一起:

\author{
  \IEEEauthorblockN{Author 1, Author 5}%
  \IEEEauthorblockA{University A} \and
  
  \IEEEauthorblockN{Author 2, Author 3}
  \IEEEauthorblockA{Organisation B} \and  
  
  \IEEEauthorblockN{Author 4}
  \IEEEauthorblockA{University A}
  \IEEEauthorblockA{Now at University C}
}

在此处输入图片描述

当然,这可能会导致作者顺序不同,而这可能是您不想要的。

相关内容