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 8.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. %% ----------------------------------------------------------------
  2. %% Thesis.tex -- MAIN FILE (the one that you compile with LaTeX)
  3. %% ----------------------------------------------------------------
  4. % Set up the document
  5. \documentclass[a4paper, 11pt, 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=blue, colorlinks=true} % Colours hyperlinks in blue, but this can be distracting if there are many links.
  12. %% ----------------------------------------------------------------
  13. \begin{document}
  14. \frontmatter % Begin Roman style (i, ii, iii, iv...) page numbering
  15. % Set up the Title Page
  16. \title {Thesis Title}
  17. \authors {\texorpdfstring
  18. {\href{your web site or email address}{Author Name}}
  19. {Author Name}
  20. }
  21. \addresses {\groupname\\\deptname\\\univname} % Do not change this here, instead these must be set in the "Thesis.cls" file, please look through it instead
  22. \date {\today}
  23. \subject {}
  24. \keywords {}
  25. \maketitle
  26. %% ----------------------------------------------------------------
  27. \setstretch{1.3} % It is better to have smaller font and larger line spacing than the other way round
  28. % Define the page headers using the FancyHdr package and set up for one-sided printing
  29. \fancyhead{} % Clears all page headers and footers
  30. \rhead{\thepage} % Sets the right side header to show the page number
  31. \lhead{} % Clears the left side page header
  32. \pagestyle{fancy} % Finally, use the "fancy" page style to implement the FancyHdr headers
  33. %% ----------------------------------------------------------------
  34. % Declaration Page required for the Thesis, your institution may give you a different text to place here
  35. \Declaration{
  36. \addtocontents{toc}{\vspace{1em}} % Add a gap in the Contents, for aesthetics
  37. I, AUTHOR NAME, declare that this thesis titled, `THESIS TITLE' and the work presented in it are my own. I confirm that:
  38. \begin{itemize}
  39. \item[\tiny{$\blacksquare$}] This work was done wholly or mainly while in candidature for a research degree at this University.
  40. \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.
  41. \item[\tiny{$\blacksquare$}] Where I have consulted the published work of others, this is always clearly attributed.
  42. \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.
  43. \item[\tiny{$\blacksquare$}] I have acknowledged all main sources of help.
  44. \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.
  45. \\
  46. \end{itemize}
  47. Signed:\\
  48. \rule[1em]{25em}{0.5pt} % This prints a line for the signature
  49. Date:\\
  50. \rule[1em]{25em}{0.5pt} % This prints a line to write the date
  51. }
  52. \clearpage % Declaration ended, now start a new page
  53. %% ----------------------------------------------------------------
  54. % The "Funny Quote Page"
  55. \pagestyle{empty} % No headers or footers for the following pages
  56. \null\vfill
  57. % Now comes the "Funny Quote", written in italics
  58. \textit{``Write a funny quote here.''}
  59. \begin{flushright}
  60. If the quote is taken from someone, their name goes here
  61. \end{flushright}
  62. \vfill\vfill\vfill\vfill\vfill\vfill\null
  63. \clearpage % Funny Quote page ended, start a new page
  64. %% ----------------------------------------------------------------
  65. % The Abstract Page
  66. \addtotoc{Abstract} % Add the "Abstract" page entry to the Contents
  67. \abstract{
  68. \addtocontents{toc}{\vspace{1em}} % Add a gap in the Contents, for aesthetics
  69. The Thesis Abstract is written here (and usually kept to just this page). The page is kept centered vertically so can expand into the blank space above the title too\ldots
  70. }
  71. \clearpage % Abstract ended, start a new page
  72. %% ----------------------------------------------------------------
  73. \setstretch{1.3} % Reset the line-spacing to 1.3 for body text (if it has changed)
  74. % The Acknowledgements page, for thanking everyone
  75. \acknowledgements{
  76. \addtocontents{toc}{\vspace{1em}} % Add a gap in the Contents, for aesthetics
  77. The acknowledgements and the people to thank go here, don't forget to include your project advisor\ldots
  78. }
  79. \clearpage % End of the Acknowledgements
  80. %% ----------------------------------------------------------------
  81. \pagestyle{fancy} %The page style headers have been "empty" all this time, now use the "fancy" headers as defined before to bring them back
  82. %% ----------------------------------------------------------------
  83. \lhead{\emph{Contents}} % Set the left side page header to "Contents"
  84. \tableofcontents % Write out the Table of Contents
  85. %% ----------------------------------------------------------------
  86. \lhead{\emph{List of Figures}} % Set the left side page header to "List if Figures"
  87. \listoffigures % Write out the List of Figures
  88. %% ----------------------------------------------------------------
  89. \lhead{\emph{List of Tables}} % Set the left side page header to "List of Tables"
  90. \listoftables % Write out the List of Tables
  91. %% ----------------------------------------------------------------
  92. \setstretch{1.5} % Set the line spacing to 1.5, this makes the following tables easier to read
  93. \clearpage % Start a new page
  94. \lhead{\emph{Abbreviations}} % Set the left side page header to "Abbreviations"
  95. \listofsymbols{ll} % Include a list of Abbreviations (a table of two columns)
  96. {
  97. % \textbf{Acronym} & \textbf{W}hat (it) \textbf{S}tands \textbf{F}or \\
  98. \textbf{LAH} & \textbf{L}ist \textbf{A}bbreviations \textbf{H}ere \\
  99. }
  100. %% ----------------------------------------------------------------
  101. \clearpage % Start a new page
  102. \lhead{\emph{Physical Constants}} % Set the left side page header to "Physical Constants"
  103. \listofconstants{lrcl} % Include a list of Physical Constants (a four column table)
  104. {
  105. % Constant Name & Symbol & = & Constant Value (with units) \\
  106. Speed of Light & $c$ & $=$ & $2.997\ 924\ 58\times10^{8}\ \mbox{ms}^{-\mbox{s}}$ (exact)\\
  107. }
  108. %% ----------------------------------------------------------------
  109. \clearpage %Start a new page
  110. \lhead{\emph{Symbols}} % Set the left side page header to "Symbols"
  111. \listofnomenclature{lll} % Include a list of Symbols (a three column table)
  112. {
  113. % symbol & name & unit \\
  114. $a$ & distance & m \\
  115. $P$ & power & W (Js$^{-1}$) \\
  116. & & \\ % Gap to separate the Roman symbols from the Greek
  117. $\omega$ & angular frequency & rads$^{-1}$ \\
  118. }
  119. %% ----------------------------------------------------------------
  120. % End of the pre-able, contents and lists of things
  121. % Begin the Dedication page
  122. \setstretch{1.3} % Return the line spacing back to 1.3
  123. \pagestyle{empty} % Page style needs to be empty for this page
  124. \dedicatory{For/Dedicated to/To my\ldots}
  125. \addtocontents{toc}{\vspace{2em}} % Add a gap in the Contents, for aesthetics
  126. %% ----------------------------------------------------------------
  127. \mainmatter % Begin normal, numeric (1,2,3...) page numbering
  128. \pagestyle{fancy} % Return the page headers back to the "fancy" style
  129. % Include the chapters of the thesis, as separate files
  130. % Just uncomment the lines as you write the chapters
  131. \input{Chapters/Chapter1} % Introduction
  132. %\input{Chapters/Chapter2} % Background Theory
  133. %\input{Chapters/Chapter3} % Experimental Setup
  134. %\input{Chapters/Chapter4} % Experiment 1
  135. %\input{Chapters/Chapter5} % Experiment 2
  136. %\input{Chapters/Chapter6} % Results and Discussion
  137. %\input{Chapters/Chapter7} % Conclusion
  138. %% ----------------------------------------------------------------
  139. % Now begin the Appendices, including them as separate files
  140. \addtocontents{toc}{\vspace{2em}} % Add a gap in the Contents, for aesthetics
  141. \appendix % Cue to tell LaTeX that the following 'chapters' are Appendices
  142. \input{Appendices/AppendixA} % Appendix Title
  143. %\input{Appendices/AppendixB} % Appendix Title
  144. %\input{Appendices/AppendixC} % Appendix Title
  145. \addtocontents{toc}{\vspace{2em}} % Add a gap in the Contents, for aesthetics
  146. \backmatter
  147. %% ----------------------------------------------------------------
  148. \label{Bibliography}
  149. \lhead{\emph{Bibliography}} % Change the left side page header to "Bibliography"
  150. \bibliographystyle{unsrtnat} % Use the "unsrtnat" BibTeX style for formatting the Bibliography
  151. \bibliography{Bibliography} % The references (bibliography) information are stored in the file named "Bibliography.bib"
  152. \end{document} % The End
  153. %% ----------------------------------------------------------------