-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
230 lines (173 loc) · 4.02 KB
/
main.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
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
\documentclass[
a4paper,
10pt,
]{article}
% PACKAGES
\usepackage{graphicx}
\usepackage{anysize}
\usepackage[numbers]{natbib}
\usepackage{titlesec}
\usepackage{blindtext}
\title{Your Title}
\author{
\begin{tabular}{l l}
\textbf{Student Name:}& Your Name\\
\textbf{Student ID:}& Your ID\\
\textbf{Supervisor:}& Your Supervisor
\end{tabular}
}
\date{Your Year}
\makeatletter
\renewcommand{\maketitle}{
\begin{titlepage}
\centering
\includegraphics[scale=0.55]{uol-logo.png}\par
\vspace{2.5cm}
\large COMP390
\par
\vspace{0.5cm}
\large 2022/23
\vfill
{\Huge\bf\@title}\par
\vspace{3cm}
\Large \@author
\vfill
{\bf\Large Department of\\
Computer Science}\par
\vspace{1cm}
University of Liverpool\\
Liverpool L69 3BX
\end{titlepage}
}
\newcommand{\makeanontitle}{
\begin{titlepage}
\centering
\includegraphics[scale=0.55]{uol-logo.png}\par
\vspace{2.5cm}
\large COMP390
\par
\vspace{0.5cm}
\large 2022/23
\vfill
{\Huge\bf\@title}\par
\vfill
{\bf\Large Department of\\
Computer Science}\par
\vspace{1cm}
University of Liverpool\\
Liverpool L69 3BX
\end{titlepage}
}
\makeatother
\makeatletter
\renewcommand{\paragraph}{\@startsection{paragraph}{4}{\z@}{3.25ex \@plus1ex \@minus.2ex}{0.25em}{\normalfont\normalsize\bfseries}}
\makeatother
% ASSETS/IMAGES PATH
\graphicspath{ {./images/} }
% Margin styling
\marginsize{0.25in}{0.25in}{0.5in}{0.5in}
% Paragraph styling
\setlength{\parindent}{0em} % No indent
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
\maketitle
\thispagestyle{empty}
\newpage
\begin{center}
Your dedication
\end{center}
\thispagestyle{empty}
\newpage
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section*{Acknowledgements}
Your Acknowledgements
\thispagestyle{empty}
\newpage
\makeanontitle
\setcounter{page}{1}
\newpage
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section{Abstract}
\paragraph{Example paragraph}
\blindtext[1]
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\tableofcontents
\vspace{2em}
\titlerule
\vspace{1em}
% These will be automatically filled in
\listoffigures
\listoftables
\newpage
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section{Introduction}
\blindtext[1]
\subsection{Example Subsection}
\blindtext[2]
\paragraph{Example paragraph}
\blindtext[1]
\paragraph{Example paragraph}
\blindtext[1]
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section{Aims Of The Project}
\blindtext[1]
\subsection{Example Subsection}
\blindtext[2]
\paragraph{Example paragraph}
\blindtext[1]
\paragraph{Example paragraph}
\blindtext[1]
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section{Objectives Of The Project}
\blindtext[1]
\subsection{Example Subsection}
\blindtext[2]
\paragraph{Example paragraph}
\blindtext[1]
\paragraph{Example paragraph}
\blindtext[1]
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section{Design}
\blindtext[1]
\subsection{Example Subsection}
\blindtext[2]
\paragraph{Example paragraph}
\blindtext[1]
\paragraph{Example paragraph}
\blindtext[1]
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section{Implementation}
\blindtext[2]
\subsection{Example Subsection}
\blindtext[2]
\section{Testing}
\blindtext[1]
\subsection{Example Subsection}
\blindtext[2]
\paragraph{Example paragraph}
\blindtext[1]
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section{Evaluation}
\blindtext[2]
\subsection{Example Subsection}
\blindtext[2]
\paragraph{Example paragraph}
\blindtext[3]
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section{Conclusion}
\subsection{Example Subsection}
\blindtext[2]
\blindtext[3]
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section{BCS Criteria and Self-Reflection}
\blindtext[2]
\subsection{Example Subsection}
\blindtext[2]
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\bibliographystyle{IEEEtranN} % IEEE Reference styling
\bibliography{references}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section{Appendices}
\subsection{Example Subsection}
\blindtext[1]
\end{document}