格式化 IEEE Tran Itemize谢谢

格式化 IEEE Tran Itemize谢谢

我正在使用 IEEE Tran (bare_jrnl_compsoc) 撰写论文。当我添加以下代码时,开头是空白页。

\author{Md~Osman~Gani, Taskina~Fayezeen, Sheikh~Iqbal~Ahamed,
    Richard~J.~Povinelli, Roger~O.~Smith, Muhammad~Arif, and~Ahmed~J.~Kattan}
    % <-this % stops a space
\IEEEcompsocitemizethanks{\IEEEcompsocthanksitem M. O. Gani, T. Fayezeen,and S. I. Ahamed are with the Department of Mathematics, Statistics, and Computer Science, Marquette University, Milwaukee, WI, USA 53233.\protect\\
E-mail: [email protected], [email protected], [email protected]}
\IEEEcompsocitemizethanks{\IEEEcompsocthanksitem R. J. Povinelli is with the Department of Electrical and Computer Engineering, Marquette University, Milwaukee, WI, USA 53233.\protect\\
E-mail: [email protected]}

\thanks {Manuscript received April 25, 2016; revised August 26, 2016.}
% The paper headers
\markboth{IEEE Transaction on Mobile Computing, ~Vol.~14, No.~8, August~2016}%
{Shell \MakeLowercase{\textit{et al.}}: Bare Demo of IEEEtran.cls for Computer Society Journals}

我有以下输出,文章从第二页开始。

First Page:

第一页除了脚注编号什么都没有

Second Page:

文章从第二页开始

你能告诉我我做错了什么或者该如何解决吗?

答案1

该问题是由于使用\IEEEcompsocitemizethanks两次造成的。

请尝试以下操作 -

\IEEEcompsocitemizethanks{\IEEEcompsocthanksitem <Author 1> 
                      \IEEEcompsocthanksitem <Author2>}

答案2

我已经解决了这个问题。这是由于“\author”项末尾花括号放错了位置。

最初,我将“\author”项的末尾花括号放在作者名字之后,如下所示:

\author{ <Author 1>, <Author2>}
\IEEEcompsocitemizethanks{
     \IEEEcompsocthanksitem <Author 1> 
     \IEEEcompsocthanksitem <Author2>}
\thanks{ Manuscript received ... }

但它需要放在所有感谢项之后。以下是正确的代码:

\author{ <Author 1>, <Author2>
\IEEEcompsocitemizethanks{
     \IEEEcompsocthanksitem <Author 1> 
     \IEEEcompsocthanksitem <Author2>}
\thanks{ Manuscript received ... }}

现在它产生了所需的输出并且文章从第一页开始。

相关内容