多位作者,多个单位

多位作者,多个单位

我有一篇论文有 3 位作者,隶属于 3 个机构,它应该遵守格式IEEEtran

作者 A 隶属于 X 和 Z,作者 B 隶属于 X,作者 C 隶属于 Y。

我想知道我是否(以及如何)可以组织作者部分,如下所示:

在此处输入图片描述

如您所见,作者 1 有多个隶属关系。我想我可以为每个作者设置一个完全独立的列,并在下方列出他的隶属关系,但作者 1 会有 4 行隶属关系...

我目前拥有的代码是:

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

\pagestyle{plain}

\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{graphicx}
\usepackage{color}
\usepackage{amssymb}
\usepackage[draft]{fixme}
\usepackage{soul}

\begin{document}

\title{Paper Title}

\author{
    \IEEEauthorblockN{Author 1}
    \IEEEauthorblockA  {
        University X\\
        Country of X\\
        University Z\\
        Country of Z
    }
    \and
    \IEEEauthorblockN{Author 2}
    \IEEEauthorblockA  {
        University X\\
        Country of X
    }
    \and
    \IEEEauthorblockN{Author 3}
    \IEEEauthorblockA  {
        University Y\\
        Country of Y
    }
}

\maketitle

\end{document}

答案1

您可以(滥用)使用该\title字段:

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

\pagestyle{plain}
\newcommand\Mark[1]{\textsuperscript{#1}}

\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{graphicx}
\usepackage{color}
\usepackage{amssymb}
\usepackage[draft]{fixme}
\usepackage{soul}

\begin{document}

\title{Paper Title\\[.75ex] 
  {\normalfont\large 
    Author 1\Mark{x,z}, Author 1\Mark{y}, Author 3\Mark{z}%
  }\\[-1.5ex]
}

\author{
    \IEEEauthorblockA{%
        \Mark{x}University X\\
        Country of X%
    }
    \and
    \IEEEauthorblockA{%
        \Mark{y}University Y\\
        Country of Y%
    }
    \and
    \IEEEauthorblockA{%
        \Mark{z}University Z\\
        Country of Z%
    }
}

\maketitle

\end{document}

在此处输入图片描述

如果您正在为期刊撰稿,无论如何这个决定都会被忽略。

相关内容