THE FINAL COUNTDOWN
[ipdf/sam.git] / thesis.tex
1 \documentclass[a4paper,10pt,titlepage]{report}
2 \usepackage[toc,page]{appendix}
3 \linespread{1.2}
4 \usepackage{setspace}
5 \onehalfspacing 
6  \parskip 10pt           % sets spacing between paragraphs
7  %\renewcommand{\baselinestretch}{1.5}  % Uncomment for 1.5 spacing between lines
8  %\parindent 0pt                  % sets leading space for paragraphs
9 \usepackage{mathrsfs}
10 %\usepackage{ulem}
11 %\usepackage{natbib}
12 \usepackage{makeidx}
13 \usepackage{graphicx}
14 \usepackage{caption}
15 %\usepackage{subfigure}
16 \usepackage{rotating}
17 %\usepackage{lscape}
18 \usepackage{pdflscape} % Needed for landscaping - in pdf viewer
19 \usepackage{verbatim}
20 \usepackage{amsmath, amsthm,amssymb}
21 \usepackage{mathrsfs}
22 \usepackage{hyperref}
23 \usepackage{url}
24 \usepackage{epstopdf}
25 \usepackage{float}
26 \usepackage{anyfontsize}
27 \usepackage{mdframed}
28 \usepackage[compact]{titlesec}
29 \usepackage[table]{xcolor}
30 \titlespacing{\chapter}{0pt}{-50pt}{0pt}
31 % spacing glue: how to read {12pt plus 4pt minus 2pt}
32 %           12pt is what we would like the spacing to be
33 %           plus 4pt means that TeX can stretch it by at most 4pt
34 %           minus 2pt means that TeX can shrink it by at most 2pt
35 \titlespacing\section{0pt}{0pt plus 0pt minus 14pt}{0pt plus 0pt minus 14pt}
36 \titleformat{\chapter}
37 {\normalfont\LARGE\bfseries}{\thechapter.}{1em}{}
38
39 %\usepackage[usenames,dvipsnames]{color}
40 \usepackage{minted} % For code snippets
41 \AtBeginEnvironment{minted}{\singlespacing%
42     \fontsize{7}{7}\selectfont}
43 \definecolor{pink}{rgb}{1.0,0.5,0.5}
44 \definecolor{darkgray}{rgb}{0.1,0.1,0.1}
45 \definecolor{lightgray}{rgb}{0.95,0.95,0.95}
46 \definecolor{gray}{rgb}{0.5,0.5,0.5}
47 \definecolor{darkred}{rgb}{0.75,0,0}
48 \definecolor{darkblue}{rgb}{0,0,0.35}
49 \definecolor{green}{rgb}{0,0.70,0}
50 \definecolor{black}{rgb}{0,0,0}
51 %\lstset{language=Java}
52 %\lstset{backgroundcolor=\color{darkgray}}
53 %\lstset{numbers=left, numberstyle=\tiny, stepnumber=1, numbersep=5pt}
54 %\lstset{keywordstyle=\color{darkred}\bfseries}
55 %\lstset{commentstyle=\color{darkblue}}
56 %\lstset{stringsyle=\color{red}}
57 %\lstset{showstringspaces=false}
58 %\lstset{basicstyle=\small}
59
60 % keeps text within our margins
61 %\sloppy
62
63 \newtheorem{theorem}{Theorem}[section]
64 \newtheorem{lemma}[theorem]{Lemma}
65 \theoremstyle{definition}\newtheorem{definition}[theorem]{Definition}
66 \newtheorem{proposition}[theorem]{Proposition}
67 \newtheorem{corollary}[theorem]{Corollary}
68 \newtheorem{example}{Example}
69 \theoremstyle{remark}\newtheorem*{remark}{Remark}
70
71 \newcommand{\Phid}[0]{\dot{\Phi}}
72 \newcommand{\Phib}[0]{\bar{\Phi}}
73
74 \newcommand{\de}[0]{\delta}
75 \newcommand{\deb}[0]{\bar{\delta}}
76
77 \newcommand{\that}[0]{\hat{\theta}}
78
79 \newcommand{\vect}[1]{\boldsymbol{#1}} % Draw a vector
80 \newcommand{\matx}[1]{\boldsymbol{#1}} % Matrix
81 \newcommand{\divg}[1]{\nabla \cdot #1} % divergence
82 \newcommand{\curl}[1]{\nabla \times #1} % curl
83 \newcommand{\grad}[1]{\nabla #1} %gradient
84 \newcommand{\pd}[3][ ]{\frac{\partial^{#1} #2}{\partial #3^{#1}}} %partial derivative
85 \newcommand{\der}[3][ ]{\frac{d^{#1} #2}{d #3^{#1}}} %full derivative
86 \newcommand{\phasor}[1]{\tilde{#1}} % make a phasor
87 \newcommand{\laplacian}[1]{\nabla^2 {#1}} % The laplacian operator
88
89 %\renewcommand{\url}[1]{$\langle$\href{#1}{\underline{\color{blue}{#1}}}$\rangle$}
90 \newcommand{\rephrase}[1]{ \textcolor{red}{#1}}
91
92 %\usepackage{endfloat}
93 %\nomarkersintext
94 \pagestyle{plain}
95 \topmargin -0.6true in
96 \textwidth 15true cm
97 \textheight 9.5true in
98 \oddsidemargin 0.25true in
99 \evensidemargin 0.25true in
100 \headsep 0.4true in
101
102 \usepackage{fancyheadings}
103 \pagestyle{fancy}
104 \addtolength{\headheight}{2.5pt}
105 \renewcommand{\chaptermark}[1]{\markboth{\thechapter~~#1}{}}
106 \renewcommand{\sectionmark}[1]{\markright{\thesection~~#1}{}}
107 \ifthenelse{\boolean{@twoside}}
108 {
109         \rhead[\bfseries \rightmark]{\bfseries \thepage}
110         \lhead[\bfseries \leftmark]{\bfseries \thepage}
111         \addtolength{\headwidth}{\marginparsep}
112         \addtolength{\headwidth}{\marginparwidth}
113 }{
114         \lhead{\bfseries \leftmark}
115         \rhead{\bfseries \thepage}
116 }
117 \cfoot{}
118 \setlength{\pdfpxdimen}{1in/300} % Define resolution of PDF
119
120 \def\changemargin#1#2{\list{}{\rightmargin#2\leftmargin#1}\item[]}
121 \let\endchangemargin=\endlist 
122
123
124
125 %---------------------------------------------------------
126 %---------------------------------------------------------
127 \begin{document}
128
129 \include{meta/Titlepage}               % This is who you are
130
131 \include{meta/Abstract}          % This is your thesis abstract
132
133 \include{meta/Letter}
134
135 \input{meta/Acknowledgements}
136
137 %\newpage
138
139 %\include{meta/Acknowledgments}   % This is who you thank
140
141 \pagenumbering{roman}
142 %\newpage
143 %---------------------------------------------------------
144 % Do the table of Contents and lists of figures and tables
145 %---------------------------------------------------------
146
147 \begingroup
148 \let\cleardoublepage\relax
149 \let\clearpage\relax
150 \linespread{0.3}
151 {\small\tableofcontents}
152 \vspace*{6\baselineskip} % sigh
153 {\small\listoffigures}
154 \markboth{}{}
155 \endgroup
156 \linespread{1.5}
157 \newpage
158
159 \pagenumbering{arabic}
160 %---------------------------------------------------------
161 %---------------------------------------------------------
162 %Include the chapters!
163
164
165 \input{chapters/Introduction}
166
167 \input{chapters/Background}
168
169 \input{chapters/Process}
170
171 \input{chapters/Results}
172
173 \input{chapters/Conclusion}
174
175
176
177 %--------------------------------------------
178 \renewcommand{\bibname}{References}
179 \bibliography{references/refs}
180 \bibliographystyle{unsrt}  
181 \addcontentsline{toc}{part}{References}
182 %{\bf Note:} We have collated most of these references at \url{http://szmoore.net/ipdf/documents/references/}
183 \vspace*{6\baselineskip} % sigh
184 %\begin{comment}
185 \begin{appendices}
186 \chapter{An Overview of Document Standards} \label {An Overview of Document Standards}
187 Together with Section \ref{Precision Specified by Document Standards} this Appendix forms an overview of the well known standard document formats.
188
189 \input{chapters/Background/Standards}
190 \section{Compositing} \label{Compositing}
191 \input{chapters/Background/Rendering/Compositing}
192 \end{appendices}
193 %\end{comment}
194
195 \end{document}
196

UCC git Repository :: git.ucc.asn.au