From d0dfd1991ffe51d9b0e2086425911203f914d7b7 Mon Sep 17 00:00:00 2001 From: lordkekz <lordkekz@lkekz.de> Date: Sat, 18 Jan 2025 13:08:53 +0100 Subject: [PATCH] Add sample thesis --- .gitattributes | 2 + mlu-siegel-transparent.png | 3 ++ sample.bib | 29 ++++++++++++++ sample.pdf | 3 ++ sample.tex | 79 ++++++++++++++++++++++++++++++++++++++ 5 files changed, 116 insertions(+) create mode 100644 .gitattributes create mode 100644 mlu-siegel-transparent.png create mode 100644 sample.bib create mode 100644 sample.pdf create mode 100644 sample.tex diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..5b2719d --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +*.pdf filter=lfs diff=lfs merge=lfs -text +mlu-siegel-transparent.png filter=lfs diff=lfs merge=lfs -text diff --git a/mlu-siegel-transparent.png b/mlu-siegel-transparent.png new file mode 100644 index 0000000..4fe2b10 --- /dev/null +++ b/mlu-siegel-transparent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb52f397154714d00bffb2e7a8ca1d024e8234900c2769fb6427e1c889869a64 +size 100447 diff --git a/sample.bib b/sample.bib new file mode 100644 index 0000000..b4c36ad --- /dev/null +++ b/sample.bib @@ -0,0 +1,29 @@ +% 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", +} diff --git a/sample.pdf b/sample.pdf new file mode 100644 index 0000000..28197ce --- /dev/null +++ b/sample.pdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54e8bfe81e0c17acd4d6e5eba92d346c21303e0dec7cfcf82688738709a89145 +size 521006 diff --git a/sample.tex b/sample.tex new file mode 100644 index 0000000..48a6442 --- /dev/null +++ b/sample.tex @@ -0,0 +1,79 @@ +\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} -- GitLab