%%% Time-stamp: <mainrep.tex 17:34, 23-04-2020 by Praveen Pawar>
%%%
% This document describes how to use iiitbhopal report style
%*******************************************************************
\documentclass[twoside]{iiitbhopal}
%% Default spacing: 1.5
%% Default font size: 12pt
%% Default font: txfonts (similar to times new roman) 
%%% Macro definitions for Commonly used symbols
\newcommand{\Rey}{\ensuremath{\mathrm{Re}}}
\newcommand{\avg}[1]{\ensuremath{\overline{#1}}}
\newcommand{\tenpow}[1]{\ensuremath{\times 10^{#1}}}
\newcommand{\pder}[2]{\ensuremath{\frac{\partial#1}{\partial#2}}}
% Referencing macros
\newcommand{\Eqref}[1]{Equation~\eqref{#1}}
\newcommand{\Tabref}[1]{Table~\ref{#1}}
\newcommand{\Figref}[1]{Figure~\ref{#1}}
\newcommand{\Appref}[1]{Appendix~\ref{#1}}
\graphicspath{{Images/}} 
\begin{document}
	
%%********************************Frontmatter***********************
% In frontmatter everything comes with roman numbering	
\pagenumbering{roman}
\setcounter{page}{1}
%*******************************************************************
%                         Title Page                            
%*******************************************************************
\title{Latex Template for Major Project Report Writing}
%%%
\firstauthor{First Author Name} %Capitalize first letter of each word
\firstrollnumber{Scholar ID1}
\secondauthor{Second Author Name}
\secondrollnumber{Scholar ID2}
\thirdauthor{Third Author Name}
\thirdrollnumber{Scholar ID3} 
%\forthauthor{Forth Author Name}  %Comment/remove this line if 4th candidate is not in the group
%\forthrollnumber{Scholar ID4}
%% Project Group ID
%\groupid{MJP18XX} %Mention your group ID here 
%% Print the date. Today's date comes by default, change it here to 
%% other date format, if required:
\date{\today}
%\date{10 May 2020}
%% The type of the report can be set here
\reporttype{A Major Project Report}
%% Name of the degree
\degree{Bachelor of Technology}
%% Department/Centre Name
\dept{Electronics and Communication Engineering}
%% Supervisor and cosupervisor/excosupervisor are not essential parts
%% of a report title page, as it is your report!
%% But if you **have** to put it uncomment these
\supervisor{SupervisorA Name}
\cosupervisor{SupervisorB Name}
%\excosupervisor{External Supervisor}
\maketitle
%*******************************************************************
%                         Dedication Page                         
%*******************************************************************
%\dedication[Dedicated to \ldots]        
%\addintoc{Dedication}
%*******************************************************************
%                        Certificate Page                         
%*******************************************************************
\makecertificate[Certificate]{project report}
%\addintoc{Certificate}
%*******************************************************************
%                          Declaration                           
%*******************************************************************
\include{AddPages/dec} 
%\addintoc{Declaration}
%*******************************************************************
%                        Acknowledgements                    
%******************************************************************* 
\include{AddPages/ack} 
%******************************************************************
%                          Abstract                             
%******************************************************************  
\include{AddPages/abs}                    
%******************************************************************
%                         Contents list                         
%******************************************************************
%\figurespagefalse
%\tablespagefalse
\makecontents % Creats toc, lof, and lot
%******************************************************************
%                        Notations                              
%******************************************************************
\notations[4cm]{List of Symbols}      
%%********************************Mainmatter***********************
% In mainmatter everything comes with arabic numbering	
\cleardoublepage
\setcounter{page}{1}
\pagenumbering{arabic}
%******************************************************************
%                         Chapters                           
%****************************************************************** 
\include{Chapters/ch1-Introduction}
\include{Chapters/ch2-LiteratureReview}
\include{Chapters/ch3-Proposed-Approach}
\include{Chapters/ch4-Results-and-Discussion}
\include{Chapters/ch5-Conclusion-and-FutureDirection}
%****************************************************************
%                         Appendices                           
%****************************************************************
%% Additional, supporting material, such as codes, derivations, etc., can be placed in the appendix
\appendix
\include{Chapters/Appendix}
%******************************************************************
%                         Bibliography or References          
%******************************************************************  
%\linespread{1}\selectfont
\bibliography{references}     
%*******************************************************************
%                         List of publications               
%******************************************************************
%\include{pub}            
%*******************************************************************
%                        About author                    
%*******************************************************************
%\colophon % remove this command while using this file.
% END OF THE REPORTING
%*******************************************************************
\end{document}
%%% Local Variables: 
%%% mode: latex
%%% TeX-master: t
%%% End: