-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
150 lines (122 loc) · 5.15 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Journal Article
%
% Gahan M. Saraiya
% 18MCEC10
%
% References
% ==========
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass[a4paper,12pt,oneside]{Thesis}
\usepackage{graphicx}
\graphicspath{ {./assets/} {./pics/} {./eps/} {./figures/}}
%----------------------------------------------------------------------------------------
% Glossaries
%----------------------------------------------------------------------------------------
\usepackage[acronym]{glossaries}
\makeglossaries
\loadglsentries{sections/glossaries}
%----------------------------------------------------------------------------------------
%----------------------------------------------------------------------------------------
% Bibliography
%----------------------------------------------------------------------------------------
%\usepackage[square, numbers, comma, sort&compress]{natbib}
\usepackage{biblatex}
\addbibresource{references.bib}
%----------------------------------------------------------------------------------------
%----------------------------------------------------------------------------------------
% Quatation FORMAT
%----------------------------------------------------------------------------------------
\usepackage{dirtytalk}
%----------------------------------------------------------------------------------------
%----------------------------------------------------------------------------------------
% DATE FORMAT
%----------------------------------------------------------------------------------------
\usepackage{datetime}
\newdateformat{monthyeardate}{\monthname[\THEMONTH], \THEYEAR}
%----------------------------------------------------------------------------------------
%----------------------------------------------------------------------------------------
% SET COMMANDS FOR COMMN CONTENT USAGE
%----------------------------------------------------------------------------------------
\newcommand\theauthor{Gahan Saraiya}
\newcommand\therollno{18MCEC10}
\newcommand\thesubject{IP Independent Generic Framework to accelerate Development Process Iteration}
\newcommand\theinstitute{Institute of Technology}
\newcommand\theuniversity{Nirma University}
\newcommand\thedegree{Master of Technology}
\newcommand\thebranch{Computer Science \& Engineering}
%\newcommand{\HRule}{\rule{\linewidth}{0.8mm}}
%\renewcommand{\footrulewidth}{0.4pt}% default is 0pt
%----------------------------------------------------------------------------------------
\newcommand*\tick{\item[\Checkmark]}
\newcommand*\arrow{\item[$\Rightarrow$]}
\newcommand*\fail{\item[\XSolidBrush]}
\hypersetup{%
colorlinks=true,
linkcolor=black,
filecolor=black,
linkbordercolor={0 0 1}
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% PREPARE TITLE
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\title{
\thesubject}
\author{\theauthor (18MCEC10)}
\date{\monthyeardate\today}
% -------------------------------------------------------------------
% BEGIN THE DOCUMENT ------------------------------------------------
% -------------------------------------------------------------------
\usepackage{atbegshi}% http://ctan.org/pkg/atbegshi
\AtBeginDocument{\AtBeginShipoutNext{\AtBeginShipoutDiscard}}
\begin{document}
\pagestyle{empty}
\maketitle
\newpage
\setstretch{1.0}
\fancyhead{}
\rhead{\thepage}
\lhead{}
\pagestyle{fancy}
\renewcommand{\thepage}{\roman{page}}
\include{sections/title}
\include{sections/declaration}
\include{sections/certificate}
\include{sections/abstract}
\include{sections/acknowledgements}
\pagestyle{fancy}
%\lhead{\emph{Contents}}
\tableofcontents % Write out the Table of Contents
\newpage
\listoffigures % \addcontentsline{toc}{chapter}{List of Figures}
\pagenumbering{arabic}
% -------------------------------------------------------------------
% Chapter: Introduction
% -------------------------------------------------------------------
\include{sections/introduction/introduction}
% -------------------------------------------------------------------
% -------------------------------------------------------------------
% Chapter: Design and Architecture
% -------------------------------------------------------------------
\include{sections/introduction/design}
\include{sections/architecture}
\include{sections/smm}
% -------------------------------------------------------------------
% -------------------------------------------------------------------
% Chapter: Implementaion
% -------------------------------------------------------------------
\lhead{Chapter 3. \emph{Implementation}}
\include{sections/framework}
% -------------------------------------------------------------------
% -------------------------------------------------------------------
% Chapter: Future Scope
% -------------------------------------------------------------------
\include{sections/future}
% -------------------------------------------------------------------
\clearpage
\printglossary[type=main]
%\printnoidxglossaries[type=main]
\clearpage
\printbibliography
\end{document}