-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.tex
117 lines (112 loc) · 3.04 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
% Copyright 2019 Avnish Sachar
%
% This work may be distributed and/or modified under the
% conditions of the LaTeX Project Public License, either version 1.3
% of this license or (at your option) any later version.
% The latest version of this license is in
% http://www.latex-project.org/lppl.txt
% and version 1.3 or later is part of all distributions of LaTeX
% version 2005/12/01 or later.
%
% This work has the LPPL maintenance status `maintained'.
%
% The Current Maintainer of this work is Avnish Sachar
\documentclass[12pt,twoside]{report}
\usepackage[T1]{fontenc}
\usepackage{longtable}
\usepackage[utf8]{inputenc}
\usepackage{multicol}
\usepackage{amsmath}
\usepackage{gensymb}
\setlength{\columnsep}{1cm}
\usepackage{graphicx}
\usepackage{newtxtext,newtxmath}
\graphicspath{{figures/}}
\setcounter{tocdepth}{5}
\usepackage{caption}
\usepackage{subfig}
\usepackage{hyperref}
\usepackage{setspace}
\usepackage{pdfpages}
\usepackage[style=ieee,
hyperref=true,
url=false,
date=year,
isbn=false,
backref=false,
doi=false,
citereset=chapter,
block=none]{biblatex}
\addbibresource{references.bib}
\usepackage{enumitem,lipsum}
\usepackage{titlesec}
\usepackage{nopageno}
\titleformat{\chapter}[display]
{\normalfont\bfseries}{}{0pt}{\Large}
\usepackage{geometry}
\geometry{
a4paper,
lmargin=0.8in,
tmargin=1in,
bmargin=1in,
rmargin=0.8in
}
\usepackage{fancyhdr}
\usepackage[utf8]{inputenc}
\pagestyle{fancy}
\fancyhf{}
\fancyhead[RE]{\leftmark}
\fancyhead[LO]{\rightmark}
\fancyfoot[RO,LE]{\thepage}
\fancypagestyle{plain}{
\renewcommand\headrulewidth{0pt}
\fancyhf{}
\fancyfoot[R]{\thepage}
}
\pagenumbering{roman}
\newcommand{\thesistitle}{\MakeUppercase{Title of the Project
}}
\title{\thesistitle}
\begin{document}
\input{titlepage.tex}
\input{certificate.tex}
\input{completioncertificate.tex}
\titleformat{\chapter}[display]{\bfseries\centering}{\large}{1em}{\large}
\newpage
\addcontentsline{toc}{chapter}{ACKNOWLEDGEMENTS}
\chapter*{ACKNOWLEDGEMENTS}
\input{chapters/acknowledgements.tex}
\newpage
\addcontentsline{toc}{chapter}{ABSTRACT}
\chapter*{ABSTRACT}
\input{chapters/abstract.tex}
\tableofcontents
\newpage
\addcontentsline{toc}{chapter}{LIST OF FIGURES}
\chapter*{LIST OF FIGURES}
\input{chapters/listoffigures.tex}
\newpage
\addcontentsline{toc}{chapter}{LIST OF TABLES}
\chapter*{LIST OF TABLES}
\input{chapters/listoftables.tex}
\newpage
\addcontentsline{toc}{chapter}{LIST OF NOTATIONS AND ABBREVIATIONS}
\chapter*{LIST OF NOTATIONS AND ABBREVIATIONS}
\input{chapters/listofsymbols.tex}
\chapter{INTRODUCTION}
\setcounter{page}{1}
\pagenumbering{arabic}
\input{chapters/introduction.tex}
\chapter{LITERATURE REVIEW}
\input{chapters/literature_review.tex}
\chapter{METHODOLOGY}
\input{chapters/objectives&methodology.tex}
\chapter{RESULTS AND DISCUSSIONS}
\input{chapters/results&discussion.tex}
\chapter{CONCLUSION AND SCOPE OF FUTURE WORK}
\input{chapters/conclusion.tex}
\chapter{REFERENCES}
\input{chapters/references.tex}
\newpage
\input{studentdetailform.tex}
\end{document}