Latex IEEE template-several ways of writing with multiple authors and multiple units

I have given several ways of writing IEEE/ACM paper author units, just as boring as Kong Yiji said that there are four ways of writing back characters.

There are several ways to write IEEE template conference papers for articles with multiple authors and multiple units. I will list them all here.

Download address of IEEE template: https://www.ieee.org/conferences/publishing/templates.html

Writing one

\author{
    \IEEEauthorblockN{San Zhang\IEEEauthorrefmark{a*}, Si Li\IEEEauthorrefmark{a,b}, Wu Wang\IEEEauthorrefmark{b}}
    \IEEEauthorblockA{\IEEEauthorrefmark{a} School of Computer Science, Wuhan University, Wuhan, China}
    \IEEEauthorblockA{\IEEEauthorrefmark{b} Department of Computer Science and Technology, Tsinghua University, Beijing, China}
    \IEEEauthorblockA{\{zhangsan\}@XXX.com, \{lisi, wangwu\}@XXX.edu.cn}
}

Writing two

\author{
    \IEEEauthorblockN{San Zhang$^{a*}$, Si Li$^{a,b}$, Wu Wang$^b$}
    \IEEEauthorblockA{$^a$ School of Computer Science, Wuhan University, Wuhan, China}
    \IEEEauthorblockA{$^b$ Department of Computer Science and Technology, Tsinghua University, Beijing, China}
    \IEEEauthorblockA{\{zhangsan\}@XXX.com, \{lisi, wangwu\}@XXX.edu.cn}
}

The effects of the above two writing methods are as follows:

In the picture, a, b can be replaced by 1, 2, or a cross or an asterisk. It depends on personal preference.

Writing method three (attach the email address link to the name of the person)

\author{
    \IEEEauthorblockN{San Zhang$^{a*}$, Si Li$^{a,b}$, Wu Wang$^b$, Goudan Li$^c$}
    \IEEEauthorblockA{$^a$ School of Computer Science, Wuhan University, Wuhan, China}
    \IEEEauthorblockA{$^b$ Department of Computer Science and Technology, Tsinghua University, Beijing, China}
    \IEEEauthorblockA{$^c$ Chentangguan, Tianjing, China}
    % \IEEEauthorblockA{\{zhangsan\}@XXX.com, \{lisi, wangwu\}@XXX.edu.cn, {g.li}@XXX.com}
    \IEEEauthorblockA{\href{mailto:[email protected]}{zhangsan}@XXX.com, \{\href{mailto:[email protected]}{lisi}, \href{mailto:[email protected]}{wangwu},\}@XXX.edu.cn, \href{mailto:[email protected]}{g.li}@XXX.com} % 给人名附上邮箱地址
}

The email address can be displayed by hovering the mouse. You need to use the package \usepackage{hyperref}. If you don't want to display the hyperlink box, you can hide the box by using the package \hypersetup{hidelinks}.

\usepackage{hyperref} %hyperlink

\hypersetup{hidelinks} %Hide the hyperlink box

Writing method four (IEEE template)

\author{\IEEEauthorblockN{1\textsuperscript{st} Given Name Surname}
\IEEEauthorblockA{\textit{dept. name of organization (of Aff.)} \\
\textit{name of organization (of Aff.)}\\
City, Country \\
email address or ORCID}
\and
\IEEEauthorblockN{2\textsuperscript{nd} Given Name Surname}
\IEEEauthorblockA{\textit{dept. name of organization (of Aff.)} \\
\textit{name of organization (of Aff.)}\\
City, Country \\
email address or ORCID}
\and
\IEEEauthorblockN{3\textsuperscript{rd} Given Name Surname}
\IEEEauthorblockA{\textit{dept. name of organization (of Aff.)} \\
\textit{name of organization (of Aff.)}\\
City, Country \\
email address or ORCID}
\and
\IEEEauthorblockN{4\textsuperscript{th} Given Name Surname}
\IEEEauthorblockA{\textit{dept. name of organization (of Aff.)} \\
\textit{name of organization (of Aff.)}\\
City, Country \\
email address or ORCID}
\and
\IEEEauthorblockN{5\textsuperscript{th} Given Name Surname}
\IEEEauthorblockA{\textit{dept. name of organization (of Aff.)} \\
\textit{name of organization (of Aff.)}\\
City, Country \\
email address or ORCID}
\and
\IEEEauthorblockN{6\textsuperscript{th} Given Name Surname}
\IEEEauthorblockA{\textit{dept. name of organization (of Aff.)} \\
\textit{name of organization (of Aff.)}\\
City, Country \\
email address or ORCID}
}

 

Writing Method Five (ACM Template)

By the way, the wording of the ACM template is also given

\author{San Zhang}
\affiliation{%
  \institution{School of Computer Science}
  \city{Wuhan}
  \country{China}}
\email{[email protected]}

\author{Si Li}
\affiliation{%
  \institution{School of Computer Science}
  \city{Wuhan}
  \country{China}}
\email{[email protected]}

\author{Wu Wang}
\affiliation{%
  \institution{Department of Computer Science and Technology}
  \city{Beijing}
  \country{China}}
\email{[email protected]}

Guess you like

Origin blog.csdn.net/Ryan_lee9410/article/details/114618198