我怎样才能删除标题页之前的空白页?

我怎样才能删除标题页之前的空白页?

我正在使用 latexian 编辑我的稿件。但是第一页是空白的。以下是我的 latex 代码。我该如何处理这个问题?

\documentclass{article}
\usepackage{authblk}
\usepackage{geometry}
\usepackage{cite}
\begin{document}
\title{paper}
\author[1*]{author A}
\author[1]{ author B}
\author[2]{author C}
\affil[1] {Department of A, University of ABC}.\\
\affil[2]{Department of B, University of CBA}.\\
\affil[*]{Corresponding author: [email protected]}
\date{}
\maketitle
\begin{abstract}
content
\end{abstract}
\section{Introduction}
content
\end{document}

答案1

有一些.\\命令\afil可以转到第一页。没有空白页消失:

\documentclass{article}
\usepackage{authblk}
\usepackage{geometry}
\usepackage{cite}
\begin{document}
\title{paper}
\author[1*]{author A}
\author[1]{ author B}
\author[2]{author C}
\affil[1]{Department of A, University of ABC}
\affil[2]{Department of B, University of CBA}
\affil[*]{Corresponding author: [email protected]}
\date{}
\maketitle
\begin{abstract}
content
\end{abstract}
\section{Introduction}
content
\end{document}

结果

相关内容