-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmain.tex
103 lines (76 loc) · 2.25 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
\documentclass[12pt, a4paper]{report}
\usepackage{graphicx}
\usepackage{float}
\usepackage{titling}
\usepackage{thesis}
\usepackage{comment}
\usepackage{subfig}
\usepackage{lipsum}
\usepackage[tableposition=top]{caption}
\usepackage[Glenn]{fncychap} % Available options: Sonny, Lenny, Glenn, Conny, Rejne, Bjarne, Bjornstr
% \pagestyle{empty}
%\renewcommand{\headrulewidth}{0pt} % remove header line
\usepackage{lipsum}
\usepackage[colorlinks=True, linktocpage=true]{hyperref}
\hypersetup{
citecolor= blue,
urlcolor= blue,
}
\newcommand{\department}{Department of Computer Science \& Engineering}
\newcommand{\university}{Premier University, Chattogram}
\newcommand{\chairmanName}{Prof. Dr. Taufique Sayeed}
\newcommand{\chairmanDesignation}{Chairman}
\newcommand{\supervisorName}{Anik Sen}
\newcommand{\supervisorDesignation}{Lecturer}
\newcommand{\firstAuthorName}{Faiham Sharif Fahim}
\newcommand{\firstAuthorId}{1502910201022}
\newcommand{\secondAuthorName}{Mohammad Naimul Alam}
\newcommand{\secondAuthorId}{1502910201033}
\newcommand{\thirdAuthorName}{Belal uddin touhin}
\newcommand{\thirdAuthorId}{1502910201052}
\newcommand{\projectTitle}{Soccer Event Classification Using Convolutional Neural Network \& Gated Recurrent Unit}
\begin{document}
\pagenumbering{roman}
\include{title_page}
\pagebreak
\include{author_declaration}
\pagebreak
\include{signature}
\pagebreak
\input{dedication}
\pagebreak
\renewcommand{\contentsname}{Table of Contents}
\tableofcontents
\clearpage
\setcounter{figure}{0}
\addcontentsline{toc}{chapter}{List of Figures}
\listoffigures
\clearpage
\addcontentsline{toc}{chapter}{List of Tables}
\listoftables
\clearpage
\input{abstract}
%\phantomsection
% Introduction
\chapter{Introduction}\label{chapter:chapter1}
\setcounter{page}{0}
\pagenumbering{arabic}
\input{chapters/introduction}
% Literature Review
\chapter{Literature Review}
\input{chapters/literature_review}
% Proposed Methodology
\chapter{Methodology/Proposed Method/Workflow}
\input{chapters/methodology}
% Results and Discussion
\chapter{Experimental Results and Discussion}
\input{chapters/results}
% Bibliography
\pagebreak
\phantomsection
\addcontentsline{toc}{chapter}{Bibliography}
\nocite{*}
\printbibliography
\pagebreak
\phantomsection
\end{document}