也許這是一個非常基本的問題,但我似乎找不到合適的答案。對於我的碩士學位論文,我需要在封面上有幾個標題(大學名稱、我的標題、作品的主題等)。有什麼優雅的方法來實現這個嗎?
(不幸的是,我的大學沒有提供任何 LaTeX 模板。順便說一句,到目前為止,建議非常棒!)
我需要一個類似這樣的封面:
答案1
\maketitle
可以使用 in (例如\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}
有了準確的規格,就可以提供更準確的模板。