我尝试使用 \address{} 命令添加与具体作者对应的地址,但在 \documentclass{conference} 中提示“\address 是未定义的控制序列”的错误。
不如下:
以下是代码。其中学院可能很长,并且会跨越两排。
\documentclass[10pt, conference, letterpaper]{IEEEtran}
\begin{document}
\title{xx}
\author{\IEEEauthorblockN{author1, author2}
\IEEEauthorblockA{This is the college and may be very long. \\
This is the University\\
Email:[email protected]} \and
\IEEEauthorblockN{author1, author2}
\IEEEauthorblockA{This is the college and may be very long. \\
This is the University\\
Email:[email protected]} \and
\IEEEauthorblockN{author1, author2}
\IEEEauthorblockA{This is the college and may be very long. \\
This is the University\\
Email:[email protected]}
}
%\address{} % where alerts undefined control sequence.
\maketitle
\end{document}
有人能帮助我吗?谢谢!
答案1
实际上这很简单,只需用以下内容替换 \author 即可:
\author{author1$^{*}$,
author2$^{*}$,
author3$^{**}$,
author4$^{***}$\\
$^{*}$College of xx, xx University.\\
$^{**}$College of xx, xx univserity.\\
$^{***}$xx, xx University and may be very long.\\
Email: \emph{\{xx, xx\}@xx.org}, \emph{[email protected]}, \emph{[email protected] }
}