Development of an internal social media platform with personalised dashboards for students
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Thesis.tex 5.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. %% ----------------------------------------------------------------
  2. %% Thesis.tex -- MAIN FILE (the one that you compile with LaTeX)
  3. %% ----------------------------------------------------------------
  4. % Set up the document
  5. \documentclass[a4paper, 12pt, oneside]{Thesis} % Use the "Thesis" style, based on the ECS Thesis style by Steve Gunn
  6. %\graphicspath{Figures/} % Location of the graphics files (set up for graphics to be in PDF format)
  7. % Include any extra LaTeX packages required
  8. %\usepackage[square, numbers, comma, sort&compress]{natbib} % Use the "Natbib" style for the references in the Bibliography
  9. %\usepackage{verbatim} % Needed for the "comment" environment to make LaTeX comments
  10. %\usepackage{vector} % Allows "\bvec{}" and "\buvec{}" for "blackboard" style bold vectors in maths
  11. \usepackage{titlesec}
  12. \usepackage[ngerman]{babel}
  13. \hypersetup{urlcolor=black, colorlinks=true}
  14. \titleformat{\chapter}[display]
  15. {\normalfont\bfseries}{}{0pt}{\Huge}
  16. %% ----------------------------------------------------------------
  17. \begin{document}
  18. % Set up the Title Page
  19. \title {Entwicklung einer internen Social Media Plattform mit personalisierbarem Dashboard für
  20. Studierende}
  21. \authors {\texorpdfstring
  22. {{Esther Kleinhenz}}
  23. {Esther Kleinhenz}
  24. }
  25. \addresses {\groupname\\\deptname\\\univname} % Do not change this here, instead these must be set in the "Thesis.cls" file, please look through it instead
  26. \date {\today}
  27. \subject {}
  28. \keywords {}
  29. \maketitle
  30. %% ----------------------------------------------------------------
  31. \setstretch{1.3} % It is better to have smaller font and larger line spacing than the other way round
  32. % Define the page headers using the FancyHdr package and set up for one-sided printing
  33. \fancyhead{} % Clears all page headers and footers
  34. \rhead{\thepage} % Sets the right side header to show the page number
  35. \lhead{} % Clears the left side page header
  36. %% ----------------------------------------------------------------
  37. % Declaration Page required for the Thesis, your institution may give you a different text to place here
  38. \Declaration{
  39. \pagenumbering{gobble}
  40. %\addtocontents{toc}{\vspace{1em}} % Add a gap in the Contents, for aesthetics
  41. I, AUTHOR NAME, declare that this thesis titled, `THESIS TITLE' and the work presented in it are my own. I confirm that:
  42. \begin{itemize}
  43. \item[\tiny{$\blacksquare$}] This work was done wholly or mainly while in candidature for a research degree at this University.
  44. \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.
  45. \item[\tiny{$\blacksquare$}] Where I have consulted the published work of others, this is always clearly attributed.
  46. \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.
  47. \item[\tiny{$\blacksquare$}] I have acknowledged all main sources of help.
  48. \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.
  49. \\
  50. \end{itemize}
  51. Signed:\\
  52. \rule[1em]{25em}{0.5pt} % This prints a line for the signature
  53. Date:\\
  54. \rule[1em]{25em}{0.5pt} % This prints a line to write the date
  55. }
  56. \clearpage % Declaration ended, now start a new page
  57. % The Abstract Page
  58. \addtotoc{Abstrakt} % Add the "Abstract" page entry to the Contents
  59. \abstract{
  60. %\addtocontents{toc} %deletes page numbers on the first three pages, also in the table of content
  61. % Add a gap in the Contents, for aesthetics
  62. Kurzer Ueberblick über die Bachelor-Arbeit\ldots
  63. }
  64. \clearpage % Abstract ended, start a new page
  65. %% ----------------------------------------------------------------
  66. \pagestyle{fancy} %The page style headers have been "empty" all this time, now use the "fancy" headers as defined before to bring them back
  67. %% ----------------------------------------------------------------
  68. \lhead{\emph{Kapitel}}
  69. %\tableofcontents % Write out the Table of Contents
  70. %% ----------------------------------------------------------------
  71. \mainmatter % Begin normal, numeric (1,2,3...) page numbering
  72. %\pagestyle{fancy} % Return the page headers back to the "fancy" style
  73. % Include the chapters of the thesis, as separate files
  74. % Just uncomment the lines as you write the chapters
  75. \input{Chapters/Chapter1} % Einleitung
  76. \input{Chapters/Chapter2} % Frameworks
  77. \input{Chapters/Chapter3} % Prototyp
  78. \input{Chapters/Chapter4} % Test oder Beweis
  79. \input{Chapters/Chapter5} % Zusammenfassung und Ausblick
  80. %% ----------------------------------------------------------------
  81. % Now begin the Appendices, including them as separate files
  82. \addtocontents{toc}{\vspace{2em}} % Add a gap in the Contents, for aesthetics
  83. \appendix % Cue to tell LaTeX that the following 'chapters' are Appendices
  84. \input{Appendices/AppendixA} % Appendix Title
  85. %\input{Appendices/AppendixB} % Appendix Title
  86. %\input{Appendices/AppendixC} % Appendix Title
  87. \addtocontents{toc}{\vspace{2em}} % Add a gap in the Contents, for aesthetics
  88. \backmatter
  89. %% ----------------------------------------------------------------
  90. \renewcommand\refname{Literaturverzeichnis}
  91. \label{Literaturverzeichnis}
  92. \lhead{\emph{Literaturverzeichnis}} % Change the left side page header to "Bibliography"
  93. \bibliographystyle{unsrtnat} % Use the "unsrtnat" BibTeX style for formatting the Bibliography
  94. \bibliography{Bibliography} % The references (bibliography) information are stored in the file named "Bibliography.bib"
  95. \end{document} % The End
  96. %% ----------------------------------------------------------------