垂直居中标题页:文章

垂直居中标题页:文章

如何使标题页上的文本垂直居中?


我的 MWE :

\documentclass[]{article}
\title{Project Title}
\date{2016-31-01}
\author{Author Name}
\begin{document}
\pagenumbering{gobble}
\maketitle
\end{document}

答案1

您可以使用以下包来实现titling

\documentclass[]{article}
\title{Project Title}
\date{2016-31-01}
\author{Author Name}
\usepackage[showframe]{geometry}

\usepackage{titling}
\renewcommand\maketitlehooka{\null\mbox{}\vfill}
\renewcommand\maketitlehookd{\vfill\null}

\begin{document}

\begin{titlingpage}
\maketitle
\end{titlingpage}

\end{document} 

在此处输入图片描述

答案2

我知道已经过去了一段时间,但有一个更简单的解决方案。您只需要在 documentclass 中使用“titlepage”:

\documentclass[titlepage]{article}

\begin{document} \
\begin{titlepage} \
\title{test} \
\author{testauthor} \
\maketitle \
\end{titlepage} \
\end{document}

相关内容