页面上没有显示脚注

页面上没有显示脚注

请查看以下代码:

             \documentclass[journal]{IEEEtran}
     \makeatother
     \usepackage{abstract}
    \usepackage{amsthm}
      \theoremstyle{definition}
      \newtheorem{definition}{Definition}
 \begin{document}
 \title{aa}
  \author{ABCD}% <-this % stops a space
 \twocolumn[
  \begin{@twocolumnfalse}
    \maketitle
 \end{@twocolumnfalse}
    \saythanks{ \small
      ABCD. \footnote{abcd}}
   \begin{abstract} 
  In this paper,  
  \end{abstract}
       ]
       \IEEEpeerreviewmaketitle
            \end{document}

我想要一个显示作者所属的脚注。虽然我给出了命令 \footnote{abcd},但我无法获取页面底部的脚注。我该如何获取脚注?

答案1

按照IEEE标准格式,作者单位应放在作者姓名下,格式为:

 \documentclass[journal]{IEEEtran}
     \makeatother
     \usepackage{abstract}
    \usepackage{amsthm}
      \theoremstyle{definition}
      \newtheorem{definition}{Definition}
 \begin{document}
 \title{aa}
\author{\IEEEauthorblockN{Michael Shell\IEEEauthorrefmark{1}, Homer Simpson\IEEEauthorrefmark{2}, James K
irk\IEEEauthorrefmark{3}, Montgomery Scott\IEEEauthorrefmark{3} and Eldon Tyrell\IEEEauthorrefmark{4}}
\IEEEauthorblockA{\IEEEauthorrefmark{1}School of Ele
ctrical and Computer Engineering\\
Georgia Institute of Technology, Atlanta, Georgia 30
332--0250\\
Email: [email protected]}
\IEEEauthorblockA{\IEEEauthorrefmark{2}Twentieth Cen
tury Fox, Springfield, USA\\
Email: [email protected]}
\IEEEauthorblockA{\IEEEauthorrefmark{3}Starfleet Aca
demy, San Francisco, California 96678-2391\\
Telephone: (800) 555--1212, Fax: (888) 555--1212}
\IEEEauthorblockA{\IEEEauthorrefmark{4}Tyrell Inc.,
123 Replicant Street, Los Angeles, California 90210
--4321}}
    \maketitle
   \begin{abstract} 
  In this paper,  
  \end{abstract}
       \IEEEpeerreviewmaketitle
            \end{document}

IEEE为了更好地理解,请参阅有关、、IEEEtran_HOWTO.pdf页码的文档5

相关内容