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
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% UTTHESIS.TEX
%% (c) 1996,1997 by Francois Pitt (last updated 1997 February 7)
%% (c) 1997 Robert bernecky 1997-09-02
%%
%% Skeleton LaTeX file for theses at UofToronto.
%% To be used in conjunction with 'utthesis.cls'.
%% This is for LaTeX2e only. If you are using earlier versions
%% of LaTeX, use Francois Pitt's thesis.sty.
%%
%% Formats theses to conform to the SGS guidelines. To generate
%% single-spaced quotes or quotations, use the "longquote" and
%% "longquotation" environments just like "quote" and "quotation".
%%
%% See the companion file 'utthesis.cls' for more details.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% For rough copies (drafts), use \documentclass[...,draft]{thesis}.
%% Rough copies havethe word "DRAFT" and the current date
%% on every page,
%% NOTE: The spacing can now be changed in
%% draft mode (to leave room for comments)!
\documentclass[12pt,twoside]{utthesis}
%% Decomment next line to use PostScript fonts
%%\UsePackage{times}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% %%
%% *** I M P O R T A N T *** %%
%% %%
%% Fill in the following fields with the required information: %%
%% - \department{...} name of the graduate department %%
%% - \degree{...} name of the degree obtained %%
%% - \author{...} name of the author %%
%% - \title{...} title of the thesis %%
%% - \gyear{...} year of graduation %%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\department{Computer Science}
\degree{Master of Science}
\author{Robert Bernecky}
\title{APEX:\\ the APL parallel Executor}
\gyear{1997}
\begin{document}
%% *** NOTE ***
%% You should put all of your '\newcommand', '\newenvironment', and
%% '\newtheorem's (in other words, all the global definitions that you
%% will need throughout your thesis) in a separate file and use
%% "\input{filename}" to input it here.
%% *** Set the line spacing. ***
%% spacing must be at least 1.25 to comply with SGS guidelines)
\begin{spacing}{\normalspacing} % default is 1.25 (change to 1.66 if you prefer)
%% This sets the page style and numbering for preliminary sections.
\begin{preliminary}
%% This generates the title page from the information given above.
\maketitle
%% This generates the abstract page, with the line spacing adjusted
%% according to SGS guidelines.
\begin{abstract}
%% *** Put your Abstract here. ***
%% (150 words for M.Sc. and 350 words for Ph.D.)
\end{abstract}
%% This generates the acknowledgements page.
\begin{acknowledgements}
%% *** Put your Acknowledgements here. ***
\end{acknowledgements}
%% This generates the Table of Contents on a separate page.
\tableofcontents\newpage
%% This generates the List of Tables on a separate page, if needed.
%% (uncomment to have it appear in the document)
%\listoftables\newpage
%% This generates the List of Figuress on a separate page, if needed.
%% (uncomment to have it appear in the document)
%\listoffigures\newpage
%% End of the preliminary sections: reset page style and numbering.
\end{preliminary}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% %%
%% *** I M P O R T A N T *** %%
%% %%
%% Put your Chapters here; the easiest way to do this is to keep each %%
%% chapter in a separate file and \include all the files right here. %%
%% Note that each chapter file should start with the line %%
%% "\chapter{ChapterName}". Note that using "\include" instead of %%
%% "\input" makes each chapter start on a new page. %%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% This adds a line for the Bibliography in the Table of Contents.
\addcontentsline{toc}{chapter}{Bibliography}
%% *** Set the bibliography style. ***
\bibliographystyle{plain} % (change according to your preference)
%% *** Set the bibliography file. ***
\bibliography{thesis} % (`thesis.bib' by default)
%% *** NOTE ***
%% If you don't use bibliography files, comment out the previous line
%% and use \begin{thebibliography}...\end{thebibliography}. (In that
%% case, you should probably put the bibliography in a separate file
%% and \include or \input it here).
\end{spacing} % This ends the \normalspacing set at beginning of document.
\end{document}
|