问题
当我使用\thanks
该\maketitle
命令时,\thanks
会创建一个空的第一页,其中只有脚注参考编号 1。
我正在使用 maxTeX XeLaTeX 进行编译。
代码
\documentclass[a4,12pt]{article}
\begin{document}
\author{Chenlin \\ [email protected]}
\date{2013.12.21}
\thanks{This is a test!}
\title{A Experiment on \LaTeX \\ The Maketitle Experiement}
\maketitle
\end{document}
答案1
\thanks
将脚注放在由 创建的标题页中\maketitle
。在article
文档类中,\maketitle
处理\title
、\author
和\date
。因此,任何添加到标题页的脚注都必须在这三个命令之一的范围内给出。
代码
\documentclass[a4paper,12pt]{article}
\begin{document}
\author{Chenlin\thanks{notes on author} \\ [email protected]\thanks{This is a test!}}
\date{2013.12.21\thanks{notes on date}}
\title{A Experiment on \LaTeX \\ The Maketitle Experiement\thanks{notes on title}}
\maketitle
\end{document}