Skip to content
Snippets Groups Projects
Unverified Commit d0dfd199 authored by Heinrich Otto Preiser's avatar Heinrich Otto Preiser
Browse files

Add sample thesis

parent 5f6f15dd
No related branches found
No related tags found
No related merge requests found
*.pdf filter=lfs diff=lfs merge=lfs -text
mlu-siegel-transparent.png filter=lfs diff=lfs merge=lfs -text
mlu-siegel-transparent.png

131 B

% stolen from https://latex-tutorial.com/tutorials/bibtex/
@article{ARTICLE:1,
AUTHOR = "John Doe",
TITLE = "Title",
JOURNAL = "Journal",
YEAR = "2017",
}
@book{DUMMY:1,
AUTHOR = "John Doe",
TITLE = "The Book without Title",
PUBLISHER = "Dummy Publisher",
YEAR = "2100",
}
@inbook{BOOK:2,
AUTHOR = "John Doe",
TITLE = "The Book without Title",
PUBLISHER = "Dummy Publisher",
YEAR = "2100",
PAGES = "100-200",
}
@misc{WEBSITE:1,
HOWPUBLISHED = "\url{http://example.com}",
AUTHOR = "Intel",
TITLE = "Example Website",
MONTH = "Dec",
YEAR = "1988",
NOTE = "Accessed on 2012-11-11",
}
sample.pdf 0 → 100644 LFS
File added
\documentclass[english]{mluthesis} % Supported languages: english, german
\usepackage{hyperref}
\usepackage{natbib, doi}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{csquotes}
\MakeOuterQuote{"}
\usepackage{lipsum} % for lorem ipsum sample text
%%%%% DOKUMENTINFO %%%%%
\ThesisSetType{Bachelor} % Bachelor, Master, Seminar, ...
\ThesisSetTitle{Why mluthesis is the last thesis you'll need}
\ThesisSetAuthor{Sam Student}
\ThesisSetSubmissionDate{14}{03}{2100} % DD-MM-YYYY
\ThesisSetLocation{Halle (Saale)}
\ThesisSetStudentNumber{12345678}
\ThesisSetDateOfBirth{01}{01}{2000} % DD-MM-YYYY
\ThesisSetPlaceOfBirth{Musterstadt}
\ThesisSetUniversity{Martin-Luther-Universität Halle-Wittenberg}
\ThesisSetFaculty{Naturwissenschaftliche Fakultät III: Institut für Informatik}
\ThesisSetCourseName{Computer Science}
% You can override your language's default label for supervisors.
% e.g. for a Seminar thesis, put "Betreuer" instead of "Gutachter" in german.
% \ThesisOverrideSupervisorLabel{Adviser}
% This is a list, seperated with commata.
% If you only put one entry, the numbers will be omitted.
\ThesisSetSupervisors{{Prof. Professor McProfessorface}, {Dr. Noonien Soong}}
% This puts the MLU sigil on the title page.
\ThesisSetLogo{\includegraphics[width=\linewidth]{mlu-siegel-transparent.png}}
\begin{document}
\maketitle
\pagebreak
\tableofcontents
\pagebreak
\chapter*{Abstract}
\lipsum[2-3]
\chapter{Introduction}
\lipsum[5-7]
\chapter{Background}
\lipsum[7-8]
\chapter{Method of Comparison}
\lipsum[5-7]
\chapter{Comparison}
\lipsum[13-15]
\chapter{Discussion}
\lipsum[5-6]
\section{Results}
\lipsum[5-6]
\section{Threats To Validity}
\lipsum[4-5]
\chapter{Conclusion and Further Research Questions}
\lipsum[7-10]
\chapter{Related Work}
\lipsum[5-7]
\nocite{*}
\bibliographystyle{plainnat}
\bibliography{sample} % uses file sample.bib
\declaration
\end{document}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment