-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.tex
executable file
·109 lines (91 loc) · 3.6 KB
/
main.tex
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
%===============================================================================
% Template Name: SUnORE Starter Thesis/dissertation template
% Template URI: http://sunore.co.za/sunore-thesis/
% Description: Starter Thesis/dissertation template for SUnORE
% Department of Industrial Engineering,
% Stellenbosch University
% Version: 1.2.3
% Author: Johan Janse van Rensburg
% Author URI: http://johanjvrens.co.za/
% License: MIT License
% License URI: http://opensource.org/licenses/MIT
%===============================================================================
\documentclass[meng]{thesis}
% Thesis options are:
% skripsie
% meng
% msc
% mcomm
% phdsc
% phdcomm
%=================================================
% add packages as needed (check first, the thesis
% class already includes some packages)
%=================================================
\usepackage[figuresright]{rotating}
\usepackage{blindtext}
\usepackage{amscd,amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{enumitem}
\usepackage{hyperref}
%=================================================
% thesis details
%=================================================
\thesistitle{The title of your skripsie, thesis or dissertation should be typed here}
\student{Student name}
\graduation{December}
\gradyear{2016}
%=================================================
% if masters or skripsie
%=================================================
\supervisor{Supervisor name}
\cosupervisor{Co-supervisor name} % remove if NA
%=================================================
% if phd
%=================================================
\promoter{Promoter name}
\copromoter{Co-promoter name} % remove if NA
%=================================================
\addbibresource{bibliography.bib} % .bib file
%=================================================
% Special Math functions
%=================================================
\newcommand{\blokkie}{\hspace{.07cm}\Box\hspace{.07cm}}
\begin{document}
\SetKwInOut{Input}{Input}
\SetKwInOut{Output}{Output}
%=================================================
% front page and decleration page - were set up
% according to university standards (as specified
% in yearbook) and may not be edited
%=================================================
\frontpage
\dominitoc[c] % remove if you don't want mini tables of contents for each chapter
%=================================================
% go populate the fields in this file
%=================================================
\input{preamble}
%=================================================
% how-to examples:
%=================================================
\input{example/tables} % remove if NA
\input{example/figures} % remove if NA
\input{example/algorithms} % remove if NA
%=================================================
% include your chapters here
%=================================================
\input{chapter/1_intro}
\input{chapter/last_chapter}
%=================================================
% bibliography
%=================================================
\cite{*} % cites all items in your .bib file for the purpose of testing biblatex - REMOVE!
\printbibliography[heading=bibintoc] % prints a bibliography containing all (and only) cited items
%=================================================
% Appendices
%=================================================
\appendix
\input{chapter/appendixA}
\input{chapter/appendixB}
\end{document}