-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.tex
96 lines (74 loc) · 3.88 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
%----------------------------------------------------------------------------------------
% Galway-Mayo Institute of Technology (GMIT)
% Department of Computer Science and Applied Physics
%
% *** Latex template for dissertations ***
%----------------------------------------------------------------------------------------
\documentclass{book}
\usepackage{graphicx} % Required for the inclusion of images
\usepackage[numbers]{natbib} % Required to change bibliography style to APA
\usepackage{amsmath} % Required for some math elements
\usepackage{makecell}
\usepackage{eurosym}
\usepackage{tabularx}
\usepackage{pbox}
\setlength\parindent{0pt} % Removes all indentation from paragraphs
\newcommand*{\customTitle}{\begingroup % Create the command for including the title page in the document
\centering % Center all text
\vspace*{\baselineskip} % White space at the top of the page
\rule{\textwidth}{1.6pt}\vspace*{-\baselineskip}\vspace*{2pt} % Thick horizontal line
\rule{\textwidth}{0.4pt}\\[\baselineskip] % Thin horizontal line
%----------------------------------------------------------------------------------------
% 1) Change Dissertation Title
%----------------------------------------------------------------------------------------
{\Large VERTEX \\[2ex] A SELF-HOSTED WEB-CONFERENCING APPLICATION}\\[0.2\baselineskip] % Title
%----------------------------------------------------------------------------------------
\rule{\textwidth}{0.4pt}\vspace*{-\baselineskip}\vspace{3.2pt} % Thin horizontal line
\rule{\textwidth}{1.6pt}\\[\baselineskip] % Thick horizontal line
\scshape % Small caps \\[\baselineskip] % Tagline(s) or further description
\Large \textbf{Final Year Project}\\
\textbf{B.Sc.(Hons) in Software Development}\par % Location and year
\normalsize
\vspace*{2\baselineskip} % Whitespace between location/year and editors
%----------------------------------------------------------------------------------------
% 2) Change Student Name(s)
%----------------------------------------------------------------------------------------
{by \\ Cathal Butler \\ David Neilan \\ Morgan Reilly \par} % Editor list
%----------------------------------------------------------------------------------------
\vspace*{2\baselineskip} % Whitespace between location/year and editors
\vfill % Whitespace between editor names and publisher logo
{\scshape \today} \\[0.3\baselineskip] % Year published
%----------------------------------------------------------------------------------------
%----------------------------------------------------------------------------------------
% 3) Change Supervisor
%----------------------------------------------------------------------------------------
{\textbf{Advised by Dr. John French}}\par % Supervisor
{Department of Computer Science and Applied Physics Galway-Mayo Institute of Technology (GMIT)}\par % Department
%----------------------------------------------------------------------------------------
\endgroup}
\begin{document}
\pagenumbering{gobble}
\begin{figure}
\begin{center}
\includegraphics[width=8cm,height=3.3cm,keepaspectratio]{images/gmit-logo.jpg} % Include the image placeholder.png
\end{center}
\end{figure}
\customTitle % This command includes the title page
\tableofcontents
\listoffigures
\pagenumbering{arabic}
%----------------------------------------------------------------------------------------
% 4) Change Chapters
% Write each chapter in a separate TEX file and include here
%----------------------------------------------------------------------------------------
\include{introduction}
\include{methodology}
\include{techreview}
\include{sysdesign}
\include{sysevaluation}
\include{conclusion}
%----------------------------------------------------------------------------------------
\bibliographystyle{unsrt}
\bibliography{references.bib}
% \nocite{*} % Test display all references %
\end{document}