[Tex/LaTex] How to painlessly create a custom layout for the title page for pdflatex

thesistitles

For my thesis my university has only a Word template with font sizes and "window" specifications to position title, name, date, etc.

What is the easiest way to layout such thing, if I'm not an expert in creating custom classes and only a basic user of pstricks and tikz?

Best Answer

While it has the disadvantage that it will likely look slightly different from the rest of your document, it does have the advantage that the title page will look like exactly like how the university expects it to be: include a PDF version you created with their Word template.

This can be done with the pdfpages package:

\usepackage{pdfpages}

\begin{document}

\includepdf[pages=-]{titlepage.pdf}

\end{document}
Related Question