-
Notifications
You must be signed in to change notification settings - Fork 0
/
Main.tex
151 lines (128 loc) · 3.81 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
151
\documentclass[12pt,oneside,a4paper]{book} % This style for A4 format.
\input{./AuxFiles/Packages}
%Document settings
\title{Design and Analysis of Oversampling ADC}
%%%%%%%%%%%%%%%Minor (or) Major report%%%%%%%%%%%%%%%
%Uncomment \MinorProject line, if the report is for Minor project.
%\MinorProject
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%Student Details%%%
\stuNameA{P Narashimaraja}
\stuUSNA{1RV16EC005}
\stuNameB{Nithin M}
\stuUSNB{1RV16EC006}
\stuNameC{Subrahmanya K N}
\stuUSNC{1RV16EC007}
\stuNameD{Subrahmanya K N}
\stuUSND{1RV16EC007}
%%%Internal Guide%%%%
\guideNameA{Mr. Ramavenkateshwaran}
\guideDesignationA{Assistant Professor}
\guideDeptA{Dept. of ECE}
\guideOrgA{RV College of Engineering}
%%%External Guide%%%%
\guideNameB{Dr. Ramavenkateshwaran}
\guideDesignationB{Assistant Professor}
\guideDeptB{Dept. of ECE}
\guideOrgB{RV College of Engineering}
%\guideNameC{Dr. Ramavenkateshwaran}
%\guideDesignationC{Assistant Professor}
%\guideDeptC{Dept. of ECE}
%\guideOrgC{RV College of Engineering}
\panelMemberA{Dr. Kariyappa}
\panelMemberDesigA{Professor}
\panelMemberB{Prof. P N Jayanthi}
\panelMemberDesigB{Assistant Professor}
\Department[ECE]{Electronics and Communication Engineering}
\HOD{Dr. K S Geetha}
\Principal{Dr. K. N. Subramanya}
\academicYear{2020-2021}
\QRurl{}
%\QRurl{https://drive.google.com/open?id=1jm-POmuq-ZZ1tT5m-xAdCDRnwvLZH8q-}
%%%%%%%%%%%%%%%%%%%For PG program%%%%%%%%%%%%%%%%%%%
%%%Uncomment \pgProgram command and define appropriate values for \MastersIn{} and \pgProgramName{}
%\pgProgram%
\MastersIn[M.Tech]{Master of Technology}
\pgProgramName{VLSI Design \& Embedded Systems}
%%%%%%%%%%%%%%%%%%Draft report%%%%%%%%%%%%%%%%%%
\DraftCopy
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%Acronyms%%%%%%%%%%%%%%%%%%
\newglossary[sym]{symbolList}{sym1}{sym2}{List of Symbols}
\makeglossaries
%Acronyms
\loadglsentries{./AuxFiles/Glossaries}
\renewcommand{\glspostdescription}{}% To remove dot at the end
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%Bibliography%%%%%%%%%%%%%%%%%%%%%
\usepackage[backend=biber,style=ieee]{biblatex}
%If backend is set to bibtex, then configure texmaker Bi(La)Tex with "bibtex %"
\addbibresource{./AuxFiles/ProjectBib.bib}%Add bib file with extention
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%WaterMark%%%%%%%%%%%%%%%%%%%%%
%%Use it only after Biblatex
\usepackage[printwatermark]{xwatermark}
\newwatermark[pages=2-1000,color=gray!50,angle=0,scale=2,xpos=0,ypos=0]{\includegraphics[width=0.3\textwidth]{Figures/RVlogoVecW}}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
\maketitle
%\pagestyle{empty}
%\newpage
\begin{spacing}{1.5}
\input{./CoverPages/Certificate}
\newpage
\input{./CoverPages/Declaration}
\newpage
\input{./CoverPages/Ack}
\newpage
\pagenumbering{roman}
\chapter*{Abstract}
\input{./CoverPages/Abstract}
\end{spacing}
\newpage
\pagestyle{fplain}
\begin{spacing}{1.5}
\tableofcontents
\end{spacing}
\newpage
\begin{spacing}{1.5}
\cleardoublepage
\addcontentsline{toc}{chapter}{\listfigurename}
\listoffigures
\end{spacing}
\newpage
\begin{spacing}{1.5}
\cleardoublepage
\addcontentsline{toc}{chapter}{\listtablename}
\listoftables
\end{spacing}
\newpage
\printglossary[type=\acronymtype, title= Abbreviations, toctitle=Abbreviations]
\newpage
\printglossary[type=symbolList, title= List of Symbols, toctitle=List of Symbols]
\mainmatter
\pagestyle{mplain}
\glsresetall
\begin{spacing}{1.5}
%Chapter 1
\input{./Chapter1/chapter1-Intro}
%Chapter 2
\input{./Chapter2/chapter2-Funda}
%Chapter 3
\input{./Chapter3/chapter3-design}
%Chapter 4
\input{./Chapter4/chapter4-implement}
%Chapter 5
\input{./Chapter5/chapter5-result}
%Chapter 6
\input{./Chapter6/chapter6-conclution}
\backmatter
\clearpage
%\ifDrft{
%%Do Nothing
%}\else{
\printbibliography%
%}
%\printindex
\end{spacing}
\end{document}