This project provides a LaTeX template for the cover page of the MLU Jura/Wiwi faculty. It follows the guidelines for a title page as provided by the irc.
- Copy the
titlepage.tex
andmlu_logo.jpg
files into your project folder. - Include the title page in your main document like in the following example.
\documentclass[12pt]{article}
\usepackage[left=3cm,top=2.5cm,right=3cm,bottom=2.5cm]{geometry} % for margins
\usepackage{mathptmx} % for times new roman font
\usepackage{graphicx} % for logo
\usepackage[onehalfspacing]{setspace} % for spacing between lines
\usepackage{tabularx} % for bottom boxes
\begin{document}
\input{titlepage.tex}
\setcounter{page}{2}
\pagenumbering{arabic}
\end{document}
Adjust the relevent sections in the titlepage.tex
file to your needs.