-
Notifications
You must be signed in to change notification settings - Fork 0
/
documentation.tex
77 lines (69 loc) · 2.42 KB
/
documentation.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
\documentclass[12pt,a4paper,openbib,titlepage]{report}
\usepackage{graphicx} % for includegraphics
\usepackage[titletoc]{appendix} % for appendix page
\usepackage{pdfpages} % for including pdf files
\usepackage{setspace} % for \doublespacing
\usepackage{multirow} % for multirow table
\usepackage{tikz} % for drawing
%\usepackage{tikz-uml} % for uml diagram
\usepackage[backend=biber,style=numeric,citestyle=authortitle-ibid]{biblatex}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage[pdftex, plainpages = false, pdfpagelabels,
pdfpagelayout = OneColumn, % create hyperlinks in citations,figures,tables and refs.
bookmarks,
bookmarksopen = true,
bookmarksnumbered = true,
linktocpage,
colorlinks = true,
linkcolor = black,
urlcolor = black,
citecolor = black,
anchorcolor = black,
hyperindex = true,
]{hyperref}
\makeatother
\setlength{\oddsidemargin}{0.5cm}
\setlength{\evensidemargin}{0.5cm}
\setlength{\topmargin}{-1.6cm}
\setlength{\leftmargin}{0.5cm}
\setlength{\rightmargin}{0.5cm}
\setlength{\textheight}{24.00cm}
\setlength{\textwidth}{15.00cm}
\parindent 0pt
\parskip 5pt
\renewcommand{\baselinestretch}{1.25} % for line spacing
%------------------------- FlowChart ------------------------------%
\tikzstyle{startstop} = [circle,draw=black,fill=black,thick,inner sep=0pt,minimum size=5mm]
\tikzstyle{process} = [rectangle,rounded corners, minimum width=2cm, minimum height=0.8cm, text centered, draw=black, fill=white]
\tikzstyle{decision} = [diamond, minimum width=1cm, minimum height=1cm, text centered, draw=black, fill=white]
\tikzstyle{arrow} = [thick, ->, >=stealth]
%------------------------- End FlowChart -------------------------%
\addbibresource{cite.bib} % include citation file
\begin{document}
\include{cover}
\pagenumbering{roman}
\include{approval}
\include{DECLARATION}
\include{CONTACT_INFO}
\include{Abstract}
\include{ACKNOWLEDGMENT}
\tableofcontents
\addcontentsline{toc}{chapter}{List of Tables}
\listoftables
\addcontentsline{toc}{chapter}{List of Figures}
\listoffigures
\include{abbreviations}
\pagenumbering{arabic}
\include{chp1}
\include{chp2}
\include{chp3}
\include{chp4}
\include{chp5}
\include{chp6}
\include{appendix}
\addcontentsline{toc}{chapter}{Reference}
\nocite{*}
\printbibliography[title={References}]
\end{document}