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
110
111
112
113
114
|
%%
%% Copyright (C) 2005 by Norm Gall <gall@spookyhill.net>
%%
%% This file may be distributed and/or modified under the conditions of
%% the LaTeX Project Public License, either version 1.3 of this license
%% or (at your option) any later version. The latest version of this
%% license is in:
%%
%% http://www.latex-project.org/lppl.txt
%%
%% and version 1.3 or later is part of all distributions of LaTeX version
%% 2003/06/01 or later.
%%
%
% York University FGS thesis/dissertation template
% for use with york-thesis.cls (v3.0)
%
% You really should read the documentation for the class file
% (york-thesis.pdf) to see what all of the additional macros and
% booleans do. As well, many of the macros you are used to using
% behave differently in this class.
%
% You may, of course, remove all comments from your document.
%
\documentclass[draft]{york-thesis}
%========== citation setup =================
\usepackage[authoryear,sort]{natbib} % I use natbib, but you can use
% any citation format; the class file
% is agnostic about citation styles.
\bibpunct[, ]{(}{)}{,}{a}{}{,} % This line configures natbib to use
% CMoS in-line citation style
%========= package setup ================
\setboolean{masters}{true} % set true for a Master's thesis;
% false for a PhD dissertation
\setboolean{hasfigures}{false} % set true if you have figures
\setboolean{hastables}{false} % set true of you have tables
\title{The title} % this is the full title of your work
\author{I. M. N. Author} % this is your name exactly as you want it
% to appear everywhere in your work.
\department{Department} % this is the name of the programme in which
% you are attempting your degree
\masterof{Arts} % this is the type of Master's degree you
% are attempting. If the boolean masters is
% false, this has no effect.
\degreename{Magisteriate} % put the actual name of the degree you are
% attempting
\date{September 1995} % this is the month and year of defence
%========== preliminary matter =================
%
% Create these in separate files; trust me
%
% If you do not have one or more of these commands in your document,
% simply delete the line.
%
% The following macros need appear in no particular order, but if you
% are going to use them, they have to be defined before you begin your
% document environment.
%
\abstractfile{abstract.tex}
\dedicationfile{dedication.tex}
\acknowledgementsfile{acknowledgements.tex}
\prefacefile{preface.tex}
\abbreviationsfile{abbreviations.tex}
%
% Your committee members list has to be an enumerated list.
%
\committeememberslist{
\begin{enumerate}
\item First Examiner
\item Second Examiner
\item Third Examiner
\item Fourth Examiner
\item Fifth Examiner
\item Sixth Examiner
\end{enumerate}}
%============ document begins ==================
%
\begin{document}
\makefrontmatter
%
% the include commands for chapters go here
%
%\include{chapter-1}
%\include{chapter-2}
%\include{chapter-3}
%\include{chapter-4}
%\include{chapter-5}
%\appendix
%\include{appendix-a}
%\include{appendix-b}
%\include{appendix-c}
\spacing{1}
\bibliographystyle{plainnat} % the class file is agnostic as to which
% bibliographic style you prefer. You
% should be able to use any style that
% conforms to what you want to see in the
% bibliography
\bibliography{thesis} % you do not have to use BibTeX to construct
% your bibliography; you can do it here by hand
% just as you would in any other document, if
% you wish.
\end{document}
\end
|