-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy paththesis.tex
57 lines (50 loc) Β· 1.65 KB
/
thesis.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
%-------------------------------------------------%
% This is a very basic but effective thesis template
% created by David Clark. By all means feel free to
% use and distribute this template to all who may need
% it but only done so freely. The creator forbids
% commercial use and distribution for personal/private
% gain.
%--------------------------------------------------%
%------------------------------------------------%
% Declare document class, using 'twoside' option %
%------------------------------------------------%
% In document class, we can specify 'print' to present the print version, otherwise the electronic version will compile.
\documentclass[10pt, twoside, print]{report}
\input{packages.tex}
\pagenumbering{gobble} % Turn page numbering off during front matter
\pagestyle{headings}
\begin{document}
%--------------%
% Front matter %
%--------------%
\input{Front/title}
\input{Front/declaration}
\input{Front/dedication}
\input{Front/acknowledgements}
\pagenumbering{roman}
\input{Front/abstract}
%-----------%
% Main body %
%-----------%
\cleardoublepage
\tableofcontents
\cleardoublepage
\listoftables
\input{Main/introduction}
\pagenumbering{arabic} % Turn page numbering on
\input{Main/chapterone}
%-------------%
% Back Matter %
%-------------%
%-----------------------------------%
% I've commented out the bibliography
% but to activite it, simply uncomment
% the commands and enter bib file name
%-----------------------------------%
\cleardoublepage
%\addcontentsline{toc}{chapter}{Bibliography} % Add bibliography to table of contents
%\bibliography{} % Input name of bibfile here
%\bibliographystyle{chicago}
%\input{Back/tables}
\end{document}