LMU SLDS Thesis Template
Author
Lisa Wimmer, David Rügamer, Ludwig Bothmann
Last Updated
3 years ago
License
Creative Commons CC BY 4.0
Abstract
A generic thesis template made by the Statistical Learning and Data Science Chair at LMU Munich
A generic thesis template made by the Statistical Learning and Data Science Chair at LMU Munich
\documentclass[12pt]{article}
\usepackage[]{graphicx}
\usepackage[]{color}
\usepackage{alltt}
\newcommand{\mytitle}{My Super Fancy Thesis Title}
\newcommand{\myname}{Jane Doe}
\newcommand{\mysupervisor}{Dr Dre}
\usepackage[a4paper, width = 160mm, top = 35mm, bottom = 30mm,
bindingoffset = 0mm]{geometry}
\usepackage[utf8]{inputenc}
\usepackage{ragged2e}
\usepackage{xcolor}
\usepackage[round, comma]{natbib}
\usepackage{fancyhdr}
\newcommand{\changefont}{%
\fontsize{8}{11}\selectfont
}
\usepackage{hyperref}
\hypersetup{
colorlinks = true,
linkcolor = black,
urlcolor = black,
citecolor = black}
\pagestyle{fancy}
\fancyhead{}
\fancyhead[R]{\changefont{\mytitle}}
\fancyfoot{}
\fancyfoot[R]{\thepage}
\setlength{\headheight}{14.5pt}
\setlength{\parindent}{0pt}
\interfootnotelinepenalty = 10000
% ------------------------------------------------------------------------------
% MAIN -------------------------------------------------------------------------
% ------------------------------------------------------------------------------
\IfFileExists{upquote.sty}{\usepackage{upquote}}{}
\begin{document}
% FRONT PAGE -------------------------------------------------------------------
\begin{titlepage}
\begin{center}
\LARGE
Master's Thesis
\vspace{0.5cm}
\rule{\textwidth}{1.5pt}
\LARGE
\textbf{\mytitle}
\rule{\textwidth}{1.5pt}
\vspace{0.5cm}
\large
Department of Statistics \\
Ludwig-Maximilians-Universität München
\vfill
\Large
\textbf{\myname}
\vfill
\large
Munich, Month Day\textsuperscript{th}, Year
\vfill
\includegraphics[width = 0.4\textwidth]{sigillum.png}
\vfill
\normalsize
Submitted in partial fulfillment of the requirements for the degree of M. Sc.
\\
Supervised by \mysupervisor
\end{center}
\end{titlepage}
% CONTENTS ---------------------------------------------------------------------
\pagenumbering{Roman}
\newpage
\begin{abstract}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis
nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu
fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in
culpa qui officia deserunt mollit anim id est laborum.
\end{abstract}
\newpage
\tableofcontents
%%%% if you would want to include material overview
%%%% use one of the following in addition
% \newpage
% \listoffigures
% \newpage
% \listoftables
\newpage
% CHAPTERS ---------------------------------------------------------------------
\pagenumbering{arabic}
\section{Introduction}
\label{intro}
\input{chapters/introduction}
\newpage
\section{Conclusion}
\label{conclusion}
\input{chapters/conclusion}
\newpage
% ------------------------------------------------------------------------------
% APPENDIX ---------------------------------------------------------------------
% ------------------------------------------------------------------------------
\pagenumbering{Roman}
\setcounter{page}{5} % CHANGE
\appendix
\section{Appendix}
\label{app}
\input{chapters/appendix}
\newpage
\section{Electronic appendix}
\label{el_app}
Data, code and figures are provided in electronic form.
\newpage
% ------------------------------------------------------------------------------
% BIBLIOGRAPHY -----------------------------------------------------------------
% ------------------------------------------------------------------------------
\RaggedRight
\bibliography{bibliography}
\bibliographystyle{dcu}
\newpage
% ------------------------------------------------------------------------------
% DECLARATION OF AUTHORSHIP-----------------------------------------------------
% ------------------------------------------------------------------------------
\Large
\noindent
\textbf{Declaration of authorship}
\vspace{0.5cm}
\noindent
\normalsize
I hereby declare that the report submitted is my own unaided work. All direct
or indirect sources used are acknowledged as references. I am aware that the
Thesis in digital form can be examined for the use of unauthorized aid and in
order to determine whether the report as a whole or parts incorporated in it may
be deemed as plagiarism. For the comparison of my work with existing sources I
agree that it shall be entered in a database where it shall also remain after
examination, to enable comparison with future Theses submitted. Further rights
of reproduction and usage, however, are not granted here. This paper was not
previously presented to another examination board and has not been published.
\\
\vspace{1cm}
\textcolor{orange}{Location, date} \\
\vspace{3cm}
\noindent\rule{0.5\textwidth}{0.4pt} \\
\textcolor{orange}{Name}
% ------------------------------------------------------------------------------
\end{document}