当我在 IEEEtran 中使用“\thanks”时,在第一页之前会出现一个额外的页面,其中包括左上角的“1”。这是一个 MWE:
\documentclass[english]{IEEEtran}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
\usepackage{babel}
\begin{document}
\title{Title Title Title Title Title}
\author{Author Author Author Author Author}
\thanks{This work was supported in part by NSF.}
\maketitle
\end{document}
答案1
您应该\thanks
在里面输入\author
正确的使用方法:
\documentclass[english]{IEEEtran}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
\usepackage{babel}
\begin{document}
\title{Title Title Title Title Title}
\author{Author Author Author Author Author\thanks{This work was supported in part by NSF.}}
\maketitle
\end{document}