IEEEtran 作者参考标记和附属机构

IEEEtran 作者参考标记和附属机构

如何将IEEEtran \IEEEauthorrefmark编号样式改为 1、2、3... 而不是星号和匕首标记,并将作者所属关系作为第一页的脚注?

答案1

对于第一个问题,您需要完全重新定义\IEEEauthorrefmark

\DeclareRobustCommand*{\IEEEauthorrefmark}[1]{%
  \raisebox{0pt}[0pt][0pt]{\textsuperscript{\footnotesize\ensuremath{#1}}}}

答案2

您可以丢弃\IEEEauthorrefmark{}并使用简单的上标来实现此目的。如下所示:

\author{
\IEEEauthorblockN {
   Author1$^{a,b}$,       %%% instead of \IEEEauthorrefmark{1},
   Author2$^{a,b}$       %%% instead of \IEEEauthorrefmark{1}
   and Author3$^{a,c}$ %%% instead of \IEEEauthorrefmark{1}\IEEEauthorrefmark{4}
}

\IEEEauthorblockA {
  $^{a}$Department  of Mathematics and Computer Science\\
  silent hill University\\
  City, Country \\
  $^{b}${authro1,author2}@univ.ac.ir
}
\IEEEauthorblockA {
    %%% \IEEEauthorrefmark{4}%\IEEEauthorrefmark{2}
    $^{c}[email protected]
}
}%%% author

相关内容