多個作者,具有多個隸屬關係

多個作者,具有多個隸屬關係

我有一篇論文有 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

您可以(ab)使用該\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}

在此輸入影像描述

如果你正在為期刊寫作,這個決定無論如何都會被放棄。

相關內容