IEEEauthorblockN

IEEEauthorblockN

我正在尝试使用ieeeconf 模板. 当我使用

\begin{document}
\author{It is me}
\maketitle

它排版。

但是,我想要关联并将作者更改为

\begin{document}
%\author{It is me}

\author{
\IEEEauthorblockN{Xin Liu, Daqiang Zhang, Jingyu Zhou, Minyi Guo}
\IEEEauthorblockA{Department of Computer Science\\
Shanghai Jiao Tong University\\
No. 800, Dongchuan Road, Shanghai, P.R.China\\
\{navyliu, zhangdq\}@sjtu.edu.cn, \{guo-my, zhou-jy\}@cs.sjtu.edu.cn}
}
\maketitle

(我从一些互联网搜索结果中剪切粘贴了这些名字),我得到了

! Undefined control sequence.
\@author -> \IEEEauthorblockN 
                              {Xin Liu, Daqiang Zhang, Jingyu Zhou, Minyi Gu...
l.36 \maketitle

答案1

好的,我们需要明确一点。有\documentclass[conference]{IEEEtran}\documentclass[conference][{ieeeconf}。它们都生产类似但不同的东西。

更具体地说,\documentclass[conference][{ieeeconf}使用不同的作者隶属关系(他们在第一页上使用数字,然后在某种“脚注”),使用大写字母(尽管它们已经是小写的)作为章节标题,并且章节的References字体较小。

因此,由于看起来作者不止 3 位,因此您应该执行以下操作:

\documentclass[letterpaper,10pt,conference]{ieeeconf}

\IEEEoverridecommandlockouts % Don't forget this command!

\begin{document}

\title{This is my title}}

\author{%
Xin Liu$^{1}$, Daqiang Zhang$^{2}$ and Jingyu Zhou$^{3}$% <-this % stops a space
\thanks{$^{1}$X. Liu is with the Faculty of Engineering, University of China
                    1234--465 Shangai, China
        {\tt\small [email protected]}}%
\thanks{$^{2}$D. Zhang is with the Faculty of Engineering, University of China and Singapure Institute of Medicine
                    4275--465 Milano, Italy
        {\tt\small [email protected]}}%
\thanks{$^{3}$J. Zhou is with the Faculty of Sport Sciences, University of Porto
                    4298--780 San Jose, Costa Rica  
        {\tt\small [email protected]}}%
\thanks{*This work was not supported by any organization}% <-this % stops a space
}
\maketitle

\section{INTRODUCTION}
Hola

\bibliographystyle{IEEEbib}
\bibliography{IEEEabrv,References}

\end{document}

答案2

\documentclass[conference]{IEEEtran}好的,我已确定如果我设置而不是,IEEEauthorblockN 将会起作用\documentclass[conference]{ieeeconf}。但是,我不确定这是否是一个好的解决方案,因为我不知道ieeeconf和之间有什么区别IEEEtran

相关内容