123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- %% ----------------------------------------------------------------
- %% Thesis.tex -- MAIN FILE (the one that you compile with LaTeX)
- %% ----------------------------------------------------------------
-
- % Set up the document
- \documentclass[a4paper, 12pt, oneside]{Thesis} % Use the "Thesis" style, based on the ECS Thesis style by Steve Gunn
- %\graphicspath{Figures/} % Location of the graphics files (set up for graphics to be in PDF format)
-
- % Include any extra LaTeX packages required
- %\usepackage[square, numbers, comma, sort&compress]{natbib} % Use the "Natbib" style for the references in the Bibliography
- %\usepackage{verbatim} % Needed for the "comment" environment to make LaTeX comments
- %\usepackage{vector} % Allows "\bvec{}" and "\buvec{}" for "blackboard" style bold vectors in maths
- \usepackage{titlesec}
- \usepackage[ngerman]{babel}
- \hypersetup{urlcolor=black, colorlinks=true}
- \titleformat{\chapter}[display]
- {\normalfont\bfseries}{}{0pt}{\Huge}
- %% ----------------------------------------------------------------
- \begin{document}
-
- % Set up the Title Page
- \title {Entwicklung einer internen Social Media Plattform mit personalisierbarem Dashboard für
- Studierende}
- \authors {\texorpdfstring
- {{Esther Kleinhenz}}
- {Esther Kleinhenz}
- }
- \addresses {\groupname\\\deptname\\\univname} % Do not change this here, instead these must be set in the "Thesis.cls" file, please look through it instead
- \date {\today}
- \subject {}
- \keywords {}
-
- \maketitle
- %% ----------------------------------------------------------------
-
- \setstretch{1.3} % It is better to have smaller font and larger line spacing than the other way round
-
- % Define the page headers using the FancyHdr package and set up for one-sided printing
- \fancyhead{} % Clears all page headers and footers
- \rhead{\thepage} % Sets the right side header to show the page number
- \lhead{} % Clears the left side page header
-
-
- %% ----------------------------------------------------------------
- % Declaration Page required for the Thesis, your institution may give you a different text to place here
- \Declaration{
- \pagenumbering{gobble}
-
- %\addtocontents{toc}{\vspace{1em}} % Add a gap in the Contents, for aesthetics
-
- I, AUTHOR NAME, declare that this thesis titled, `THESIS TITLE' and the work presented in it are my own. I confirm that:
-
- \begin{itemize}
- \item[\tiny{$\blacksquare$}] This work was done wholly or mainly while in candidature for a research degree at this University.
-
- \item[\tiny{$\blacksquare$}] Where any part of this thesis has previously been submitted for a degree or any other qualification at this University or any other institution, this has been clearly stated.
-
- \item[\tiny{$\blacksquare$}] Where I have consulted the published work of others, this is always clearly attributed.
-
- \item[\tiny{$\blacksquare$}] Where I have quoted from the work of others, the source is always given. With the exception of such quotations, this thesis is entirely my own work.
-
- \item[\tiny{$\blacksquare$}] I have acknowledged all main sources of help.
-
- \item[\tiny{$\blacksquare$}] Where the thesis is based on work done by myself jointly with others, I have made clear exactly what was done by others and what I have contributed myself.
- \\
- \end{itemize}
-
-
- Signed:\\
- \rule[1em]{25em}{0.5pt} % This prints a line for the signature
-
- Date:\\
- \rule[1em]{25em}{0.5pt} % This prints a line to write the date
- }
- \clearpage % Declaration ended, now start a new page
-
- % The Abstract Page
- \addtotoc{Abstrakt} % Add the "Abstract" page entry to the Contents
- \abstract{
- %\addtocontents{toc} %deletes page numbers on the first three pages, also in the table of content
- % Add a gap in the Contents, for aesthetics
- Kurzer Ueberblick über die Bachelor-Arbeit\ldots
-
- }
-
- \clearpage % Abstract ended, start a new page
- %% ----------------------------------------------------------------
-
-
- \pagestyle{fancy} %The page style headers have been "empty" all this time, now use the "fancy" headers as defined before to bring them back
-
-
- %% ----------------------------------------------------------------
- \lhead{\emph{Kapitel}}
- %\tableofcontents % Write out the Table of Contents
-
-
- %% ----------------------------------------------------------------
- \mainmatter % Begin normal, numeric (1,2,3...) page numbering
- %\pagestyle{fancy} % Return the page headers back to the "fancy" style
-
- % Include the chapters of the thesis, as separate files
- % Just uncomment the lines as you write the chapters
-
- \input{Chapters/Chapter1} % Einleitung
-
- \input{Chapters/Chapter2} % Frameworks
-
- \input{Chapters/Chapter3} % Prototyp
-
- \input{Chapters/Chapter4} % Test oder Beweis
-
- \input{Chapters/Chapter5} % Zusammenfassung und Ausblick
-
-
- %% ----------------------------------------------------------------
- % Now begin the Appendices, including them as separate files
-
- \addtocontents{toc}{\vspace{2em}} % Add a gap in the Contents, for aesthetics
-
- \appendix % Cue to tell LaTeX that the following 'chapters' are Appendices
-
- \input{Appendices/AppendixA} % Appendix Title
-
- %\input{Appendices/AppendixB} % Appendix Title
-
- %\input{Appendices/AppendixC} % Appendix Title
-
- \addtocontents{toc}{\vspace{2em}} % Add a gap in the Contents, for aesthetics
- \backmatter
-
- %% ----------------------------------------------------------------
- \renewcommand\refname{Literaturverzeichnis}
- \label{Literaturverzeichnis}
- \lhead{\emph{Literaturverzeichnis}} % Change the left side page header to "Bibliography"
- \bibliographystyle{unsrtnat} % Use the "unsrtnat" BibTeX style for formatting the Bibliography
- \bibliography{Bibliography} % The references (bibliography) information are stored in the file named "Bibliography.bib"
-
- \end{document} % The End
- %% ----------------------------------------------------------------
|