[Tex/LaTex] How to edit a cover page for the thesis like this template

covers

I'm trying to dive under this incredible world of non-WYSIWYG. So, for my first main challenge I need to write my master's thesis with LaTeX. And I found some difficulties at the very beginning of my work: the cover page. I need to customize the cover page like this model (it's the mandatory model for our thesis in my university): enter image description here

I need the university logo to be within the dotted retangle. I tried to fit it there without success.

Best Answer

First of all, you can encolose the title page in a titlepage environment so the document class deals with it in a proper way.

Then you can set the distances between text blocks in a relative way to each other (by using the \stretch command), so if you are required to change the paper size (university policies with respect to thesis formatting can be very annoying) they still keep the same proportion on the page.

You can also define picture sizes relative to document parameters, by defining lengths as a number multiplying predefined constants, say defining width as a multiple of \textwidth. Be sure to use a vectorial picture so it does not suffer loss of quality due to resizing (and also makes for smaller file sizes). You can find the UNICAMP logo in several formats here (Beware: the eps version has some gibberish code written after the postscript code. Get rid of it otherwise LaTeX won't like it).

You can fine-tune the margins further by using commands from the geometry package.

So a full example of a titlepage would be

\usepackage{graphicx}
\usepackage[a4paper]{geometry}

...

\begin{titlepage}
\includegraphics[width=.1\textwidth]{your-university-logo}

\centering
\vspace{\stretch{1}}
\Large{Your Name}

\vspace{\stretch{1}}
\LARGE{\textbf{Your Thesis Title}}

\vspace{\stretch{2}}
\Large{Your City\\Date}

\end{titlepage}

Example of a titlepage