LaTeX 中的多个标题

LaTeX 中的多个标题

也许这是一个非常基本的问题,但我似乎找不到合适的答案。对于我的硕士学位论文,我需要在封面上写几个标题(大学名称、我的头衔、作品主题等)。有什么优雅的方法可以实现这一点吗?

(不幸的是,我的大学没有提供任何 LaTeX 模板。顺便说一句,到目前为止的建议都很棒!)

我需要一个类似这样的封面:

在此处输入图片描述

答案1

可以使用 in 来控制条目\maketitle(例如\title\author和/或\date)。但是,对于大型文档,最简单的方法是使用环境titlepage并按照大学规范的要求输入内容。这是一个粗略的模板:

在此处输入图片描述

\documentclass{report}
\begin{document}
\begin{titlepage}
\centering
{\LARGE\bfseries My thesis title}

\vspace{1cm}

{\Large Some subtitle for my thesis}

\vspace{2cm}

{\large An Author}

\vspace{2cm}

{\bfseries Submitted in fulfillment of the degree \ldots}

\vfill

{\itshape University of Randomville}
\end{titlepage}

% Other content goes here...

\end{document}

有了精确的规格,人们就能提供更准确的模板。

相关内容