summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/aucklandthesis/template.tex
blob: 5f1bfb64debce5749902acfbde7b3a40f4b2e96e (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
\documentclass[11pt]{aucklandthesis}
%
% This is a template for University of Auckland theses.
%
% Written by Alistair Kwan, June 2016
% 
%
% Options:
%	10pt, 11pt, 12pt: size of main text
% 	examcopy: asserts confidentiality for examination copies
%	partial: thesis partial fulfils degree requirements
%	singlespace, onehalfspace, doublespace: line spacing
%	oneside: format for single-sided printing
%	draft: adds 'draft' and date to footer
%

%
% Add, delete or un-comment packages below as required.
%

\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}

%\usepackage{graphicx} % for inserting graphics files
%\usepackage{appendix} % for appendices

%\usepackage{hyperref} % for formatting web addresses and other URLs
%\urlstyle{same} % try also tt, sf if this option doesn't produce clear enough output

% Readability options
%
%\usepackage{booktabs} % for table rules
%\usepackage{microtype} % for improved justification

% Typeface options — choose one if desired
% or choose a different typeface to accommmodate character sets
% as needed for East Asian and other languages.
%
% Consider compiling using the XeLaTeX engine if you have more extreme
% typeface needs, e.g. for multiple languages, or a need for symbols particular
% to a typeface.
%
% See also the LaTeX Symbols List at
% https://http://www.ctan.org/pkg/comprehensive
%
%\usepackage{mathptmx} % Times New Roman, including mathematics
%\usepackage{mathpazo} % Palatino with mathematics support
%\usepackage{fourier} % Utopia, a serif typeface with Fourier mathematics
%\usepackage{gentium} % a contemporary serif typeface
%\usepackage{libertine} % a softer-feeling serif typeface; also installs sans-serif font Biolinum
%\usepackage{fouriernc} % Century Schoolbook with Fourier maths
%\usepackage{mathpple} % Palatino with Fourier maths


% To set the sans serif font (for \sffamily):
%\usepackage[scaled]{helvet} % Nimbus, like Helvetica
%\usepackage{universalis} % Universalis
%\usepackage{avant} % URW Gothic, like Avant Garde
%\usepackage{PTSansNarrow}
%\usepackage{AlegreyaSans} % Alegreya Sans

% To set the mathematics font:
%\usepackage{eulervm} % Euler, based on a Zapf design

% To set the (usually monospaced) typewriter font:
%\usepackage[ttdefault=true]{AnonymousPro}
%\usepackage[scaled]{beramono}
%\usepackage{inconsolata}
%\usepackage{sourcecodepro}

%\usepackage{cjk} % for Chinese, Japanese, Korean

%\usepackage{tabularx} % For easier table formatting.

%\usepackage[nottoc]{tocbibind} % Controls the table of contents
%   nottoc: don't list table of contents inside itself
%   section: go as far as section-level headings

% Automated bibliography
%
%\usepackage[
%	style=authortitle, 
%	citestyle=authortitle,
%	backend=biber
%	]
%	{biblatex}
%bibliography{bibliography1.bib, bibliography2.bib} % Specify bibliography files 

\begin{document}

% ====================================================
%
% FRONTMATTER
%
% Arabic pagination, starting with the title page
% which is counted but not numbered
%
% ====================================================

% Specify the title page content
\title{[thesis title]}
\subtitle{[subtitle]}
\author{[candidate's name]}
\degreesought{[degree]} 
\degreediscipline{[discipline]}
\degreecompletionyear{[year]}

% Print the title page
\maketitle

% Abstract, up to 350 words
%\input{abstract} % it's in a separate file

% Dedication (optional)
%\thesisdedication{Dedicated to grandma, and to grammar.}

% Preface and/or acknowledgements (optional)
%\input{acknowledgements} % it's in a separate file

% Contents, lists of tables and figures
\settocdepth{section} % choose chapter, section, subsection \cleardoublepage\tableofcontents
%\cleardoublepage\listoffigures
%\cleardoublepage\listoftables

% Glossary (optional)
%\input{glossary}

% ====================================================
%
% MAINMATTER
%
% Include external chapter files here using
% the \input{} command
%
% If you run out of memory during compilation,
% switch some or all chapters to \include{} instead of \input{}, 
% but watch out for pagination problems.
%
% ====================================================

%\input{chapter1} % I hope that you have better titles than this
%\input{chapter2} 
%\input{chapter3} 

% ====================================================
%
% ENDMATTER
%
% Appendices and bibliography 
% Pagination arabic, re-starts at 1
%
% ====================================================
\cleardoublepage % start afresh on a new page
\setcounter{page}{1} % re-sets the page counter
%\appendixpage* % makes a page to mark beginning of appendices
% \input{appendix1} 

%\printbibliography[title={Works cited}, heading=bibintoc]

\end{document}