\感谢 IEEEtran 添加了一个额外的页面

\感谢 IEEEtran 添加了一个额外的页面

当我在 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}

在此处输入图片描述

相关内容