-
Notifications
You must be signed in to change notification settings - Fork 1
/
ociamthesismain.tex
128 lines (99 loc) · 3.41 KB
/
ociamthesismain.tex
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
\documentclass[12pt]{ociamthesis} % default square logo
%\documentclass[12pt,beltcrest]{ociamthesis} % use old belt crest logo
%\documentclass[12pt,shieldcrest]{ociamthesis} % use older shield crest logo
%load any additional packages
\usepackage{amssymb}
\usepackage{indentfirst}
\usepackage{bm}
\usepackage{hyperref}
\hypersetup{
colorlinks,
citecolor=black,
filecolor=black,
linkcolor=black,
urlcolor=black
}
%% QUOTATIONS MARKS
\usepackage{dirtytalk}
%% ITEMIZE
\usepackage{enumitem}
%% TABULAR
\usepackage{tabularx,booktabs}
\newcolumntype{C}[1]{>{\centering\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
\usepackage{multirow}
%% PSEUDO CODE
\usepackage{algorithm}
\usepackage[noend]{algpseudocode}
% TABLE
\usepackage{color}
\usepackage{adjustbox}
%% FANCY MATH
\usepackage{amsmath}
\usepackage{booktabs,array}
\usepackage{caption}
\usepackage{textcomp}
%URL
\usepackage{hyperref}
%WIDE FIGURES
\usepackage{graphicx}
\usepackage{caption}
\usepackage{subcaption}
%REFERENCES
\usepackage[backend=bibtex, style = ieee, urldate = comp]{biblatex}
\usepackage{xpatch}
\usepackage{url}
\usepackage{filecontents}
\bibliography{refs.bib} %use a bibtex bibliography file refs.bib
\newcommand{\tableequation}[1]{%
\vspace*{-\baselineskip}
{\begin{flalign}#1&&&\end{flalign}}%
\vspace*{-\baselineskip}
}
%input macros (i.e. write your own macros file called mymacros.tex
%and uncomment the next line)
%\include{mymacros}
\title{Genetic algorithms applied\\[0.8ex]
in Computer Fluid Dynamics for\\[0.8ex]
multiobjective optimizationn} %note \\[1ex] is a line break in the title
\author{Javier Lobato Perez} %your name
\college{University of Vermont} %your college
%\renewcommand{\submittedtext}{change the default text here if needed}
\degree{Bachelor of Science in Aerospace Engineering} %the degree
\degreedate{May 2018} %the degree date
%end the preamble and start the document
\begin{document}
%this baselineskip gives sufficient line spacing for an examiner to easily
%markup the thesis with comments
\baselineskip=18pt plus1pt
%set the number of sectioning levels that get number and appear in the contents
\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{2}
\maketitle % create a title page from the preamble info
\include{dedication} % include a dedication.tex file
\include{acknowlegements} % include an acknowledgements.tex file
\include{abstract} % include the abstract
\begin{romanpages} % start roman page numbering
\tableofcontents % generate and include a table of contents
\listoffigures % generate and include a list of figures
\listoftables % generate and include a list of tables
\end{romanpages} % end roman page numbering
%now include the files of latex for each of the chapters etc
\include{chapter1}
\include{chapter2}
\include{chapter3}
\include{chapter4}
\include{chapter5}
\include{chapter6}
%%now enable appendix numbering format and include any appendices
%\appendix
%\include{appendix1}
%\include{appendix2}
%next line adds the Bibliography to the contents page
\addcontentsline{toc}{chapter}{Bibliography}
%uncomment next line to change bibliography name to references
\renewcommand{\bibname}{References}
%\bibliography{refs} %use a bibtex bibliography file refs.bib
%\bibliographystyle{ieee} %use the plain bibliography style
\nocite{*}
\printbibliography
\end{document}