-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
93 lines (69 loc) · 2.35 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
% begin the document
\documentclass[12pt,twoside]{report}
% start of the preamble
\usepackage[utf8]{inputenc}
\usepackage{float}
\usepackage{graphicx}
\usepackage[table]{xcolor}
\usepackage[a4paper,width=150mm,top=25mm,bottom=25mm]{geometry}
\usepackage{caption}
\usepackage{subcaption}
\usepackage{fancyhdr}
\usepackage[backend=bibtex]{biblatex}
\usepackage{pdfpages}
\usepackage{wrapfig} % for positioning figures and wraping text around them
\usepackage[allbordercolors = white]{hyperref}
\usepackage{arabxetex} % for arabic language and needs to be compiled with XeLaTeX and we need to use the command \textarab[utf]{ arabic text here }
\restylefloat{table}
\graphicspath{ {figures/} }
\addbibresource{chapters/references/references.bib}
\nocite{*}
\begin{document}
\includepdf{chapters/titlePage/titlePage}
\pagenumbering{Roman}
\phantomsection
\chapter*{Abstract}
\addcontentsline{toc}{chapter}{Abstract}
\input{chapters/abstract/abstract}
\chapter*{Acknowledgment}
\addcontentsline{toc}{chapter}{Acknowledgment}
\input{chapters/acknowledgment/acknowledgment}
\chapter*{Contacts}
\addcontentsline{toc}{chapter}{Contacts}
\input{chapters/contacts/contacts}
\tableofcontents
\listoffigures
\listoftables
\clearpage %to solve the issue of numbring the list of tables with page number 1
\pagenumbering{arabic}
\pagestyle{fancy}
\fancyfoot[R]{\includegraphics[scale = .3]{titlepage/logo.png}}
\newcommand{\changefont}{%
\fontsize{9}{11}\selectfont
}
\fancyhead[LE,RO]{\changefont \slshape \rightmark} %section
\fancyhead[RE,LO]{\changefont \slshape \leftmark} %chapter
\chapter{Introduction}
\input{chapters/introduction/introduction}
\chapter{Necessary Background}
\input{chapters/background/background}
\chapter{Market Survey}
\input{chapters/market/market}
\chapter{System Architecture}
\input{chapters/architecture/architecture}
\chapter{Implementation and Tools}
\input{chapters/implementation/implementation}
\chapter{Testing}
\input{chapters/testing/testing}
\chapter{Future Work}
\input{chapters/future/future}
\renewcommand{\bibname}{References}
\printbibliography
\appendix
\chapter{User Manual}
\input{chapters/user/user}
\chapter{Feasibility Study}
\input{chapters/feasibility/feasibility}
\chapter{Arabic Summary -\textarabic[utf]{الملخص}}
\input{chapters/arabicSummary/arabicSummary}
\end{document}