当我不想要初始空白页时,为什么要在标题中创建两个页面?

当我不想要初始空白页时,为什么要在标题中创建两个页面?

出现空白页

顶部底部的 $1$ 就在那里 - 其余部分都是空白的。我还试图让标题向左移动,但不起作用。有什么帮助吗?顺便说一句,这是我第一次使用 LaTeX。左对齐命令对此有效吗?

这是我的代码:

\documentclass{article}
\begin{document}
\begin{flushleft}
\title{English}
\author{Henry Lyuieuasjhf}
\date{}
\maketitle
\end{flushleft}
\section{Introduction}
Hello this is a practice!
\end{document}

答案1

为了将标题左对齐,您需要重新定义命令\maketitle。例如:

\documentclass{article}

\makeatletter % To allow the use of @
\renewcommand{\maketitle}{%
    \begin{flushleft}%
        {\Large\bfseries\@title}\\\medskip%
        {\scshape\@author}\\%
        {\small\@date}%
    \end{flushleft}%
}
\makeatother

\begin{document}

\title{English}
\author{Henry Lyuieuasjhf}
\date{}

\maketitle

\section{Introduction}
    Hello this is a practice!

\end{document}

其结果为:

在此处输入图片描述

相关内容