假设我正在使用 IEEE Transactions 期刊课程
\documentclass[conference]{IEEEtran}
我应该如何正确对齐作者以使其以这种格式显示?
答案1
在会议模式下,您已经以列格式获得了每位作者的\IEEEauthorblockN
姓名和\IEEEauthorblockA
所属机构。然后,您可以在同一个单元格中引入换行符来放置第二个换行符。各列由\and
命令分隔。
\documentclass[conference]{IEEEtran}
\usepackage{lipsum} %<---- For dummy text
\title{Some IEEE paper}
\author{
\IEEEauthorblockN{Michael Shell}
\IEEEauthorblockA{School of Electrical and\\
Computer Engineering\\
Georgia Institute of Technology\\
Atlanta, Georgia 30332--0250\\
Email: [email protected]}\\ %<------ Line breaks in the current column
\IEEEauthorblockN{Michael Shell}
\IEEEauthorblockA{School of Electrical and\\
Computer Engineering\\
Georgia Institute of Technology\\
Atlanta, Georgia 30332--0250\\
Email: [email protected]}
\and
\IEEEauthorblockN{Homer Simpson}
\IEEEauthorblockA{Twentieth Century Fox\\
Springfield, USA\\
Email: [email protected]}\\[0.9cm] %<------- Extra vertical space
\IEEEauthorblockN{Homer Simpson}
\IEEEauthorblockA{Twentieth Century Fox\\
Springfield, USA\\
Email: [email protected]}
\and
\IEEEauthorblockN{James Kirk\\
and Montgomery Scott}
\IEEEauthorblockA{Starfleet Academy\\
San Francisco, California 96678-2391\\
Telephone: (800) 555--1212\\
Fax: (888) 555--1212}\\ %<-----------
\IEEEauthorblockN{James Kirk\\
and Montgomery Scott}
\IEEEauthorblockA{Starfleet Academy\\
San Francisco, California 96678-2391\\
Telephone: (800) 555--1212\\
Fax: (888) 555--1212}
}
\begin{document}
\maketitle
\begin{abstract}
\lipsum[1]
\end{abstract}
\lipsum[2-6]
\end{document}