-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPID-19.tex
107 lines (83 loc) · 4.34 KB
/
PID-19.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
%% ----------------------------------------------------------------
%% Thesis.tex -- MAIN FILE (the one that you compile with LaTeX)
%% ----------------------------------------------------------------
% Set up the document
\documentclass[a4paper, 12pt, oneside]{uet_thesis} % Use the "Thesis" style, based on the ECS Thesis style by Steve Gunn
\renewcommand\thesection{\arabic{section}}
\graphicspath{{Figures/}} % Location of the graphics files (set up for graphics to be in PDF format)
% Include any extra LaTeX packages required
\usepackage[square, numbers, comma, sort&compress]{natbib} % Use the "Natbib" style for the references in the Bibliography
\usepackage{verbatim} % Needed for the "comment" environment to make LaTeX comments
%\usepackage{vector} % Allows "\bvec{}" and "\buvec{}" for "blackboard" style bold vectors in maths
\usepackage{url}
\usepackage{natbib}
\usepackage[final]{pdfpages}
\hypersetup{urlcolor=blue, colorlinks=true} % Colours hyperlinks in blue, but this can be distracting if there are many links.
% remove the unnecessary spacing before and after the headings/subheadings
\usepackage[compact]{titlesec}
\titlespacing{\section}{0pt}{*0}{*0}
\titlespacing{\subsection}{0pt}{*0}{*0}
\titlespacing{\subsubsection}{0pt}{*0}{*0}
\setlength{\parskip}{6pt}
%\setlength{\parsep}{0pt}
%\setlength{\headsep}{0pt}
%\setlength{\topskip}{0pt}
%% ----------------------------------------------------------------
\begin{document}
\frontmatter % Begin Roman style (i, ii, iii, iv...) page numbering
% Set up the Title Page
\title {\underline{\Large{Final Year Project Proposal}} \linebreak Automating Recruiting Workflow to Hire Candidates \linebreak}
\session {2018 -- 2022}
\advisor {Muhammad Irzam}
\authors { % please enter the students names and registration numbers
Ahmad Bilal \quad 2018-CS-04 \\
Muhammad Faisal \quad2018-CS-14 \\
Ghulam Ghous \quad 2018-CS-31 \\
Ahmad Zaheer \quad 2018-CS-32 \\
}
\addresses {\deptname \\ \univname} % Do not change this here, instead these must be set in the "Thesis.cls" file, please look through it instead
\date {\today}
\subject {}
\keywords {}
\maketitle
%% ----------------------------------------------------------------
\setstretch{1.3} % It is better to have smaller font and larger line spacing than the other way round
% Define the page headers using the FancyHdr package and set up for one-sided printing
\fancyhead{} % Clears all page headers and footers
\rhead{\thepage} % Sets the right side header to show the page number
\lhead{} % Clears the left side page header
\pagestyle{fancy} % Finally, use the "fancy" page style to implement the FancyHdr headers
%% ----------------------------------------------------------------
\pagestyle{fancy} %The page style headers have been "empty" all this time, now use the "fancy" headers as defined before to bring them back
%% ----------------------------------------------------------------
\lhead{\emph{Contents}} % Set the left side page header to "Contents"
\tableofcontents % Write out the Table of Contents
\mainmatter % Begin normal, numeric (1,2,3...) page numbering
\pagestyle{fancy} % Return the page headers back to the "fancy" style
\onehalfspacing
% Include the chapters of the thesis, as separate files
% Just uncomment the lines as you write the chapters
\input{Sections/Section1}
\input{Sections/Section2}
\input{Sections/Section3}
\input{Sections/Section4}
\input{Sections/Section5}
\input{Sections/Section6}
\input{Sections/Section7}
----------------------------------------------------------------
% Now begin the Appendices, including them as separate files
\addtocontents{toc}{\vspace{2em}} % Add a gap in the Contents, for aesthetics
\appendix % Cue to tell LaTeX that the following 'chapters' are Appendices
%\input{./AppendixA} % Appendix Title
\addtocontents{toc}{\vspace{2em}} % Add a gap in the Contents, for aesthetics
\backmatter
%% ----------------------------------------------------------------
\label{References}
\lhead{\emph{References}} % Change the left side page header to "References"
%\addcontentsline{toc}{section}{Bibliography}
\bibliographystyle{plainnat} % Use "unsrtnat" BibTeX style for formatting the references
\nocite{*}
\bibliography{references} % The references information are stored in the file named "references.bib"
%%
\end{document} % The End
%% ----------------------------------------------------------------