文档开头有额外的空白页

文档开头有额外的空白页

如果我在文档第一页的脚注中添加致谢,文档前面会多出一页,如果删除它,多出的一页就会消失。我的文档开头如下:

\begin{document}
\title
\author
\thanks

如果我删除\thanks,多余的页面就会消失。我想在脚注中添加致谢。我该怎么办?

答案1

在 LaTeX 标准文档类(例如articlebookreport)中,命令\thanks不应用于像\author或 那样的独立命令\title,而是在其中一个的参数中使用。

例如你可以写

\documentclass{article}
\begin{document}
  \title{A thesis\thanks{A real one}}
  \author{John Doe\thanks{Husband of Jane Doe}}
  \maketitle
\end{document}

输出

相关内容