在页面上垂直对齐标题

在页面上垂直对齐标题
\documentclass{article}
\title{Title}
\author{Name}
\date{}
\begin{document}
    \begin{titlepage}
      \maketitle
    \end{titlepage}
\end{document}

在此处输入图片描述

您好,我如何在中心写标题?

答案1

如果您想使用章节,您应该将类​​别类型从更改为,\documentclass{article}\documentclass{report} 可以使用\usepackage{sectsty}将章节标题放在中心。

\documentclass{report}

\usepackage{sectsty}
\chapterfont{\huge\centering}
\chaptertitlefont{\centering}

\begin{document}
\chapter{Related Work}
\end{document}

相关内容