如何避免 \maketitle 之后出现空白页?

如何避免 \maketitle 之后出现空白页?

我有几页已处理。我想以标题页开始文档,但如果我这样做,它会在标题页和第一部分之间产生一个编号为“1”的空白页。如何防止这种情况发生?我尝试了文档类、和以及report/ articlebook代码如下所示:\maketitle\begin{titlepage}\end{titlepage}

\documentclass{report}
\usepackage{amsmath}
\usepackage{amssymb}
\begin{document}
\textwidth 13cm
\title{Author: My title}
\author{a. name}
\maketitle
\hfill
\chapter{Chapter title}
\section{section title}
\end{document}

感谢您的帮助。

答案1

消除\hfill

\documentclass{report}
\usepackage{amsmath}
\usepackage{amssymb}
\begin{document}
\textwidth 13cm
\title{Author: My title}
\author{a. name}
\maketitle
% \hfill
\chapter{Chapter title}
\section{section title}
\end{document}

编辑:如果您还想将标题对齐到页面顶部附近,请按照 Marco Daniel 的建议并使用类notitlepage选项。(在这种情况下,您仍然可以删除\hfill。)请注意,包含标题的页面将编号为“1”,第一章将从第 2 页开始。

相关内容