blob: 072c36c0588748b6e8ec3cffcaba2784d14d5e16 (
plain)
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
|
%%=====================================================================================
%%
%% Filename: esim_1_1.tex
%%
%% Description:
%%
%% Version: 2.1
%% Created: Mar 2020
%% Revision: Aug 2020
%%
%% Author:
%% Organization: eSim,FOSSEE
%% Copyright: Copyright (c) 2020, eSim
%%
%% Notes:
%%
%%=====================================================================================
%\documentclass[a4paper,11pt]{book}[2015/08/22]
\documentclass[a4paper,11pt,oneside]{book}[2015/08/22]
\usepackage{layouts}
\usepackage{cclicenses}
\usepackage{morefloats}
\usepackage{paralist}
\usepackage{chngcntr}
\usepackage{color}
\usepackage{verbatim}
\counterwithout{footnote}{chapter}
\usepackage{subfig}
\usepackage{float}%----included now%
\usepackage{graphicx}%---added now---%
\graphicspath{ {figures/} }%----added now---%
%\usepackage{biblatex}
\newcommand{\ourname}[1]{\\ [1.5mm] \noindent{\bf #1}}
% Shroff book size
\textheight 7.75in
\textwidth 5.75in
\evensidemargin 0.3in
\oddsidemargin 0.3in
%Include Style Sheet
\input{styles}
% header
\usepackage{layouts}
\usepackage{fancyhdr}
\pagestyle{headings}
\renewcommand\chaptermark[1]{\markboth{\bf {\thechapter. #1}}{}}
\renewcommand\sectionmark[1]{\markright{\bf {\thesection. #1}}}
\cfoot{}
\fancyfoot{}
%Command
\newcommand{\tnfig}{0.3\linewidth}
\newcommand{\smfig}{0.45\linewidth}%0.42
\newcommand{\smfigp}{0.49\linewidth}%0.42
\newcommand{\lgfig}{0.65\linewidth}%0.65
\newcommand{\hgfig}{0.9\linewidth}
\renewcommand\bibname{References}
\usepackage{amsmath,graphicx,makeidx}
\usepackage{fancybox,url}
\usepackage{cite}
\usepackage{appendix}%%%to cut paste after compile%%%%%
\newcommand{\figref}[1]{Fig.~\ref{#1}}
\newcommand{\tabref}[1]{Table~\ref{#1}}
\newcommand{\chapref}[1]{Chapter~\ref{#1}}
\newcommand{\secref}[1]{Sec.~\ref{#1}}
\newcommand{\mypageref}[1]{Page~\pageref{#1}}
\newcommand{\fnref}[1]{Footnote~\ref{#1}}
\renewcommand{\topfraction}{1}
\renewcommand{\bottomfraction}{1}
\renewcommand{\textfraction}{0}
\renewcommand{\floatpagefraction}{1}
\bibliographystyle{./IEEEtran}
\hyphenation{Ashu-tosh pr-ess}
\makeindex
\begin{document}
% includes the cover page
\pagestyle{plain}
\pagenumbering{roman}
\input{cover_page.tex}
\newpage
%\pagestyle{empty}
\addtocontents{toc}{\protect\thispagestyle{empty}}
\tableofcontents % adds Index Page
%\pagestyle{empty}
\addtocontents{lof}{\protect\thispagestyle{empty}}
%\listoffigures % adds List of Figures
\cleardoublepage
%\newpage
\cleardoublepage
\pagenumbering{arabic} %reset numbering to normal for the main content
\input{introduction_page.tex} % adds the chapter 1 introduction
\input{chap_2.tex} % adds chapter 2
\input{chap_3.tex}% adds chapter 3
\input{chap_4.tex} % adds chapter 4
\input{chap_5.tex} % adds chapter 5
\input{chap_6.tex} % adds chapter 6
\input{chap_7.tex} % adds chapter 7
\input{chap_8.tex} % adds chapter 8
\input{chap_9.tex} % adds chapter 9
\input{chap_10.tex} % adds chapter 10
\input{chap_11.tex} % adds chapter 11
\input{chap_12.tex} % adds chapter 12
\input{Appendix.tex} % adds appendix
\bibliography{ref.bib}
\end{document}
|