按区块划分的作者和所属机构

按区块划分的作者和所属机构

我正在使用IEEEtran类,并且我对 LaTeX 还很陌生,如何使用IEEEtran类以正确的格式实现此输出。

在此处输入图片描述

答案1

作者块的总宽度太宽,无法容纳在文本块边距内,因此它会滚动到下一行。如果您希望保留此格式,则需要减小部分内容的大小、缩写或合并它们。例如,我尝试过似乎\small Vellore Institute of Technology有效:

在此处输入图片描述

\documentclass[conference]{IEEEtran}

\title{Sample paper}

\author{\IEEEauthorblockN{Taher Ali Rangwala}%
  \IEEEauthorblockA{\small Vellore Institute of Technology \\
    [email protected]} \and
  \IEEEauthorblockN{Manish Dipankar}
  \IEEEauthorblockA{\small Vellore Institute of Technology \\
    [email protected]} \and
  \IEEEauthorblockN{Saikiran Chanda}
  \IEEEauthorblockA{\small Vellore Institute of Technology \\
    [email protected]} \and
  \IEEEauthorblockN{Shanu Kumar}
  \IEEEauthorblockA{\small Vellore Institute of Technology \\
    [email protected]}
}

\begin{document}

\maketitle

\end{document}

但是,那IEEEtran班级 文档提到了这一点:

如果作者超过三位或文本太宽,无法容纳在页面上,请使用替代的长格式 [...] 该\IEEEauthorrefmark{}命令将生成与其参数中的数字相对应的脚注符号。使用它将作者姓名链接到他们各自的所属机构。没有必要避免在\IEEEauthorblock's 之间留空格,因为每个块都会开始一组新的行,而 LaTeX 会忽略行末和行首的空格。

以下是来自文档的一个示例:

在此处输入图片描述

\documentclass[conference]{IEEEtran}

\title{Sample paper}

\author{
  \IEEEauthorblockN{
    Michael Shell\IEEEauthorrefmark{1}, 
    Homer Simpson\IEEEauthorrefmark{2}, 
    James Kirk\IEEEauthorrefmark{3}, 
    Montgomery Scott\IEEEauthorrefmark{3} and 
    Eldon Tyrell\IEEEauthorrefmark{4}}
  \IEEEauthorblockA{
    \IEEEauthorrefmark{1}School of Electrical and Computer Engineering \\
      Georgia Institute of Technology, Atlanta, Georgia 30 332--0250 \\
      Email: [email protected]}
    \IEEEauthorblockA{\IEEEauthorrefmark{2}Twentieth Century Fox, Springfield, USA \\
      Email: [email protected]}
    \IEEEauthorblockA{\IEEEauthorrefmark{3}Starfleet Academy, San Francisco, California 96678-2391 \\
      Telephone: (800) 555--1212, Fax: (888) 555--1212}
    \IEEEauthorblockA{\IEEEauthorrefmark{4}Tyrell Inc., 123 Replicant Street, Los Angeles, California 90210--4321}}

\begin{document}

\maketitle

\end{document}

相关内容