我正在尝试创建一个居中的标题,在页面上水平和垂直方向均居中。我对 Latex 还不太熟悉 - 到目前为止,我尝试过以下代码,但没有成功:
\begin{center}
\title{Title}
\maketitle
\end{center}
我是否需要使用特殊标志来使标题居中?
我在用着:
\documentclass[12pt]{article}
答案1
代码
\documentclass[11pt,a4paper]{book}
\title{title here}
\author{author here}
\date{date here}
\begin{document}
\maketitle
\end{document}
产生输出
编辑:正如@Gonzalo Medina 指出的那样,如果您想使用该类article
,只需将代码的第一行更改为\documentclass[titlepage]{article}
。