summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/uowthesis/mythesis.tex
blob: fc5d9257d26a125bfde99221c853eb3d8e245765 (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
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
%% mythesis.tex, v1.0
%% An example using UoWthesis class v1.0, by Lei Ye
%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%
%% This example demonstrates how to use UoWthesis class for preparation 
%%   of PhD and other higher degree research theses in compliance with
%%   the specifications of UoW theses in the "Guidelines for Preparation
%%   and Submission of Higher Degree Research Theses" (March 2006), by 
%%   Research Student Centre, Research & Innovation Division, UoW 
%%   (the "Guidelines"). However, this work is of no official status.
%%   It is created and made available in the hope that it would be useful.
%%   
%%   
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%
%% USAGE:  \documentclass{UoWthesis}
%%         \documentclass[...options...]{UoWthesis}
%%
%%                       (Only to be used in this LaTeX2e native mode)
%%
%% The default settings produce a PhD dissertation (12pt font, 
%%   single-sided, double-spaced, hyper-linked)
%%
%% Thesis Class Options:
%%   * Degrees
%% 		   phd/master/other       (Default: phd)
%%         (master and other in fact are the same)
%%   * Filfulment requirement
%% 		   full/partial           (Default: full for phd            )
%%                              (         partial for master/other)
%%   * Line spacing for body text: 
%%       doublespacing/onehalfspacing 
%%                              (Default: doublespacing)
%%   * Hypertext in PDF
%%       nohyper/hyper          (Default: hyper)
%%   * Copyright Page
%%       copyright              (Default: null for no copyright page)
%%
%% LaTeX2e Document Class Options:
%%    Acceptable options pertaining to the 
%%      requirements of the "Guidelines"
%%
%%   * Font Size: 
%%      12/11/10 pt            (Default: 12pt - altered from report)
%%   * Printing Sides:
%%      oneside/twoside        (Default: oneside)
%%   * Page Openning:
%%      openany/openright      (Default: openany for oneside 
%%                                              - altered from report)
%%                             (         openright for twoside 
%%                                              - altered from report)
%%
%% Thesis Class Micros and Commands (Preamble only):
%%    \degree{...}             (Required for master/other. Default: 
%%                              Master of Computer Science - Research)
%%                             (Not used for phd)
%%       Specify the name of the degree
%%    \unit{...}               (Required. Default: School of Computer
%%                                   Science and Software Engineering)
%%       Specify the name of the academic unit.
%%    \faculty{...}            (Required. Default: Faculty of 
%%                                                        Informatics)
%%       Specify the name of the faculty.
%%    \degreeHeld{...}         (Optional. Default: null)
%%       Specify the degrees held, that will appear under your name 
%%         on the title page
%%    \submissionDate{...}{...}{...}
%%                             (Required. Default: The 1st Fools' Day)
%%       Specify the date of graduation
%%    \keywords{...}           (Required. Default: null)
%%       Keywords to appear on the Abstract page
%%    \dedication{...}         (Optional. Default: null)
%%       Recipients to appear on the Dedication page
%% 
%%    \dedicationtrue          (Optional)
%%       Turn on the dedication page
%%    \noListOfTables          (Optional)
%%       Turn off the List of Tables
%%    \noListOfFigures         (Optional)
%%       Turn off the List of Fifures
%%
%% Thesis Class Environments
%%    \begin{abstract} ... end{abstract}
%%                             (Required)
%%       Produce the abstract page
%%    \begin{acknowledgements} ... end{acknowledgements}
%%                             (Everybody has one)
%%       Produce the acknowledgements page
%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%
%
\documentclass[master, copyright]{UoWthesis}
%
%% graphicx package has been loaded by UoWthesis class
%%   You can use graphics commands without loading it again
%% \usepackage{graphicx}
%
%% Load your required packages here
%%
\usepackage{url}
%%
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%
%%%%% Preamble: Thesis Particulars %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%
%% Specify particulars of your thesis 
%%   
%
%% REQUIRED!
%
\title{UoW Thesis Class For \LaTeXe}
\author{Lei Ye}
\submissionDate{30}{March}{2007}
\keywords{LaTeX, Document Class, Thesis, UoW Thesis Class}
\degree{Master of \LaTeX\  Art}      % required for Master/other degrees
%
%% OPTIONAL
%
\degreeHeld{BEng, PhD}
\unit{School of Computer Science and Software Engineering}
\faculty{Faculty of Informatics}
%
\dedicationtrue    % Not required. All your business
\dedication{My Students \\and\\ Anyone Who May Love \LaTeX}
%
\noListOfTables    % Turn it off you don't have any tables
\noListOfFigures   % Turn it off you don't have any figures
%
%% end of OPTIONAL
%
\begin{document}
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%
%%%%% Front Matter %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
%% DO NOT REMOVE! 
%%   \frontmatter is required to produce front matter
%%     including title page, abstract page, table of content etc.
%% Must be placed before \abstract and \acknowledgements
\frontmatter  
%
%% Abstract           % REQUIRED
%
\begin{abstract}      
My abstract goes here.
\end{abstract}
%
%% Acknowledgements   % REQUIRED
%
\begin{acknowledgements}
I would like to thank ...
\end{acknowledgements}
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%
%%%%% Main Matter %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
%% DO NOT REMOVE! 
%%   \mainmatter is required to make settings  
%%    for body text  
%% Must be placed after \abstract and \acknowledgements
\mainmatter
%
%% User customisation code goes here
%
%% turn off header rule (fancyhdr)
%\renewcommand\headrulewidth{0pt}
%% turn on footer rule (fancyhdr)
%\renewcommand\footrulewidth{0.4pt}
%
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%
%%%%% Body Text %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
%% Main Body of Text  % NOT REQUIRED! You are allowed to submit a thesis without text
%%
%%   Chapter sectioning commands:
%%      \chapter{}
%%      \seciton{}
%%      \subsection{}
%%      \subsubsection{}
%%      \paragraph{}  
%%      \subparagraph{}
%%
%% Your chapters start here
\chapter{Introduction}
This is my chapter 1 Intorduction.
\section{Overview}
This is my Overview section
\newpage
\section{Another Section}
This is another section on a new page to show the header.
\chapter{Literature Review}
This is my Literature Review chapter.
%chapter{More Chapters}
\chapter{Conclusion and Future Work}
This is my Conclusion and Future Work chapter.
%%
%% You can use this as a master file and create your
%%   indivisual chapters in separate files.
%\include{Chapter1}
%% Create the file: Chapter1.tex
%%   in the file
%%   \chapter{Introduction}
%%   ...
%%
%
%% Appendices         % OPTIONAL: Appendices
\appendix
%
%% Appendix chapters start here
%%
\chapter{\LaTeX\ Resources}
This is my appendix A on \LaTeX\ \cite{latex04}. More info can be found at 
\begin{center}
  \url{http://www.uow.edu.au/~lei/resources/latex/.}
\end{center}
%
%% Other Supplementary
%% Material           % This has nothing to do with LaTeX
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%
%%%%% Back Matter %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
%% Bibliography or
%% List of References % REQUIRED: Even Einstein put references in his paper
\bibliographystyle{plain}
\bibliography{myThesisBib}
\end{document}