blob: 7bb8504fb9e1731bccc29e3f4ddf096dd4404dfe (
plain)
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
|
%
% York University FGS thesis/dissertation template
% for use with york-thesis.cls (v1.8)
%
% The reference for this file is "Guidelines for the Preparation and
% Examination of Theses and Dissertations". This is available in
% each Graduate Programme Office as well as in the FGS Thesis Office.
%
% There are a few decisions I made:
% a) The type size in both draft and final is set as 12pt
% b) The paper type is set as letterpaper
% c) Footnotes, quotes, and quotations are set single spaced
% in final mode. This is an option in the FGS guidelines.
% You can change this in the .cls file if you
% really want double spaced text in these environments
%
% options: final: generates depositable document according to FGS regs
% draft: wider margins, single spaced text [default setting]
%
\documentclass[draft]{york-thesis}
\setboolean{masters}{false} % set false for PhD degree
\setboolean{hasfigures}{false}
\setboolean{hastables}{false}
\title{THE TITLE}
\author{Author}
\department{Department}
\masterof{Arts} % set to `Arts' or `Science'
\date{September 2004} % this is the month and year of defence
% Some helpful settings
\setcounter{tocdepth}{1} % table of contents inclusion level
% If you really want footnotes to reset to 0 at the beginning of each
% chapter, uncomment the following command:
%
% \def\resetfootnote{\setcounter{footnote}{0}}
%========== preliminary matter =================
%
% Create these in separate files; trust me
%
\abstractfile{abstract.tex}
\acknowledgementsfile{acknowledgement.tex}
%============ document control ==================
%\includeonly{Chapter-1}
%\includeonly{Chapter-2}
%\includeonly{Chapter-3}
%\includeonly{Chapter-4}
%\includeonly{Chapter-5}
%============ document begins ==================
%
\begin{document}
\makefrontmatter
%
% include commands for chapters here
%
\include{chapter-1}
%\include{chapter-2}
%\include{chapter-3}
%\include{chapter-4}
%\include{chapter-5}
\spacing{1} % I prefer single spaced bibliographies
\bibliographystyle{plainnat}
\bibliography{thesis}
%\appendix % if you have appendices, they go here
%\include{appendix-a}
%\include{appendix-b}
%\include{appendix-c}
\end{document}
\end
|