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. \hypersetup{urlcolor=black, colorlinks=true}
  12. %% ----------------------------------------------------------------
  13. \begin{document}
  14. \frontmatter % Begin Roman style (i, ii, iii, iv...) page numbering
  15. % Set up the Title Page
  16. \title {Entwicklung einer internen Social Media Plattform mit personalisierbarem Dashboard für
  17. Studierende}
  18. \authors {\texorpdfstring
  19. {{Esther Kleinhenz}}
  20. {Esther Kleinhenz}
  21. }
  22. \addresses {\groupname\\\deptname\\\univname} % Do not change this here, instead these must be set in the "Thesis.cls" file, please look through it instead
  23. \date {\today}
  24. \subject {}
  25. \keywords {}
  26. \maketitle
  27. %% ----------------------------------------------------------------
  28. \setstretch{1.3} % It is better to have smaller font and larger line spacing than the other way round
  29. % Define the page headers using the FancyHdr package and set up for one-sided printing
  30. \fancyhead{} % Clears all page headers and footers
  31. \rhead{\thepage} % Sets the right side header to show the page number
  32. \lhead{} % Clears the left side page header
  33. \pagestyle{fancy} % Finally, use the "fancy" page style to implement the FancyHdr headers
  34. %% ----------------------------------------------------------------
  35. % Declaration Page required for the Thesis, your institution may give you a different text to place here
  36. \Declaration{
  37. \addtocontents{toc}{\vspace{1em}} % Add a gap in the Contents, for aesthetics
  38. I, AUTHOR NAME, declare that this thesis titled, `THESIS TITLE' and the work presented in it are my own. I confirm that:
  39. \begin{itemize}
  40. \item[\tiny{$\blacksquare$}] This work was done wholly or mainly while in candidature for a research degree at this University.
  41. \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.
  42. \item[\tiny{$\blacksquare$}] Where I have consulted the published work of others, this is always clearly attributed.
  43. \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.
  44. \item[\tiny{$\blacksquare$}] I have acknowledged all main sources of help.
  45. \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.
  46. \\
  47. \end{itemize}
  48. Signed:\\
  49. \rule[1em]{25em}{0.5pt} % This prints a line for the signature
  50. Date:\\
  51. \rule[1em]{25em}{0.5pt} % This prints a line to write the date
  52. }
  53. \clearpage % Declaration ended, now start a new page
  54. % The Abstract Page
  55. \addtotoc{Abstrakt} % Add the "Abstract" page entry to the Contents
  56. \abstract{
  57. \addtocontents{toc}{\vspace{1em}} % Add a gap in the Contents, for aesthetics
  58. Kurzer Überblick über die Bachelor-Arbeit\ldots
  59. }
  60. \clearpage % Abstract ended, start a new page
  61. %% ----------------------------------------------------------------
  62. \pagestyle{fancy} %The page style headers have been "empty" all this time, now use the "fancy" headers as defined before to bring them back
  63. %% ----------------------------------------------------------------
  64. \lhead{\emph{Kapitel}}
  65. \tableofcontents % Write out the Table of Contents
  66. %% ----------------------------------------------------------------
  67. \mainmatter % Begin normal, numeric (1,2,3...) page numbering
  68. \pagestyle{fancy} % Return the page headers back to the "fancy" style
  69. % Include the chapters of the thesis, as separate files
  70. % Just uncomment the lines as you write the chapters
  71. \input{Chapters/Chapter1} % Introduction
  72. %\input{Chapters/Chapter2} % Background Theory
  73. %\input{Chapters/Chapter3} % Experimental Setup
  74. %\input{Chapters/Chapter4} % Experiment 1
  75. %\input{Chapters/Chapter5} % Experiment 2
  76. %\input{Chapters/Chapter6} % Results and Discussion
  77. %\input{Chapters/Chapter7} % Conclusion
  78. %% ----------------------------------------------------------------
  79. % Now begin the Appendices, including them as separate files
  80. \addtocontents{toc}{\vspace{2em}} % Add a gap in the Contents, for aesthetics
  81. \appendix % Cue to tell LaTeX that the following 'chapters' are Appendices
  82. \input{Appendices/AppendixA} % Appendix Title
  83. %\input{Appendices/AppendixB} % Appendix Title
  84. %\input{Appendices/AppendixC} % Appendix Title
  85. \addtocontents{toc}{\vspace{2em}} % Add a gap in the Contents, for aesthetics
  86. \backmatter
  87. %% ----------------------------------------------------------------
  88. \label{Bibliography}
  89. \lhead{\emph{Bibliography}} % Change the left side page header to "Bibliography"
  90. \bibliographystyle{unsrtnat} % Use the "unsrtnat" BibTeX style for formatting the Bibliography
  91. \bibliography{Bibliography} % The references (bibliography) information are stored in the file named "Bibliography.bib"
  92. \end{document} % The End
  93. %% ----------------------------------------------------------------