[Tex/LaTex] Multiple Titles in LaTeX

titles

Maybe this is a really basic question but i can't seem to find an appropriate answer. For my master's degree thesis i need to have several titles in the cover (university name, my title, the subject of the work, etc.). Any elegant way to implement this?

(My university unfortunately does not provide any LaTeX template. By the way, suggestions have been awesome so far!)

I needed a cover similar to this:

enter image description here

Best Answer

One could control the entries using in \maketitle (such as \title, \author and/or \date). However, for large documents its simplest to use the titlepage environment and enter the content as is required by the university's specification. Here's a rough template:

enter image description here

\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}

With exact specifications one can provide a more accurate template.

Related Question