-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMastersExample.tex
More file actions
58 lines (34 loc) · 1.41 KB
/
MastersExample.tex
File metadata and controls
58 lines (34 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
%% This document gives an example on how to use the gucmasterthesis
%% LaTeX document class.
%% Use short name MMT MIS or CIMET, and language, english or norwegian
\documentclass[MACS,english]{gucthesis}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc} % For utf8 encoded .tex files allows norwegian characters in the files. This can be dangerous if you change to a differnt editor.
\usepackage[pdftex]{graphicx, hyperref} % For cross references in pdf
\usepackage{color} % For colouring text
\usepackage{url}
\begin{document}
\input{MastersThesisData} % this is the file which contains all the details about your thesis
\makefrontpages % make the frontpages
%\input{MastersIntro}
\tableofcontents
% Comment with a percent to remove figures or tables:
% \listoffigures
% \listoftables
% All the chapters/extra files are declared here using the file names
\include{chapters/abstract}
\include{chapters/introduction}
\include{chapters/functionality}
\include{chapters/architecture}
\include{chapters/conclusion}
% \include{packages}
\bibliographystyle{gucthesis}
\bibliography{MastersExample}
%\begin{thebibliography}{9}
%\bibitem{RESTRef}
%Fielding, Roy Thomas. \textit{Architectural Styles and the Design of Network-based Software Architectures}. Doctoral dissertation, University of California, Irvine, 2000
%\end{thebibliography}
%\end{gather*}
\appendix
\include{appendix}
\end{document}