\documentclass[a4paper,11pt]{report}
\usepackage{ASMBsty}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%% START OF THE BOOK %%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
%%%%%%%% EQUATION SPACING %%%%%%%%%%%
\setlength{\belowdisplayskip}{6pt}
\setlength{\belowdisplayshortskip}{5pt}
\setlength{\abovedisplayskip}{6pt}
\setlength{\abovedisplayshortskip}{5pt}
%====================================
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%% STUDENT'S INFORMATION %%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\newcommand{\Title}{Your Thesis Title}
\newcommand{\Student}{Mr. Xyz}
\newcommand{\Roll}{Roll No. XXXXXX}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%% SUPERVISOR'S INFORMATION %%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\newcommand{\Supervisor}{Mr. PQR}
\newcommand{\Designation}{Assistant Professor}
\newcommand{\Time}{January, 2024}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%% HEAD'S INFORMATION %%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\newcommand{\Head}{Mr. Abc}
\newcommand{\DesigHead}{Professor}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%% EXTERNAL'S INFORMATION %%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\newcommand{\External}{Mr. Def}
\newcommand{\ExtDesig}{Assistant Professor}
\newcommand{\ExtDept}{Department of Electronics \& Communication Engineering}
\newcommand{\ExtUniversity}{Khulna University of Engineering \& Technology}
\newcommand{\ExtAddress}{Khulna-9203}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%% FRONT MATTERS %%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% TITLE PAGE
\include{FrontMatter/TitlePage}
\setcounter{page}{1}
\pagenumbering{roman}
% ACKNOWLEDGEMENT
\addcontentsline{toc}{chapter}{Acknowledgment}
\include{FrontMatter/Acknowledgment}
% DECLARATION
\addcontentsline{toc}{chapter}{Declaration}
\include{FrontMatter/Declaration}
% CERTIFICATE
\addcontentsline{toc}{chapter}{Certificate}
\include{FrontMatter/Certificate}
% ABSTRACT
\addcontentsline{toc}{chapter}{Abstract}
\include{FrontMatter/Abstract}
% TABLE OF CONTENTS
\addcontentsline{toc}{chapter}{Contents}
\tableofcontents
\cleardoublepage
% LIST OF FIGURES
\addcontentsline{toc}{chapter}{\listfigurename}
\listoffigures
\cleardoublepage
% LIST OF TABLES
\addcontentsline{toc}{chapter}{\listtablename}
\listoftables
\cleardoublepage
% ABBREVIATIONS
\addcontentsline{toc}{chapter}{List of Abbreviations}
\include{FrontMatter/Abbreviations}
% LIST OF SYMBOLS
\addcontentsline{toc}{chapter}{List of Symbols}
\include{FrontMatter/Symbols}
% PUBLICATIONS
\addcontentsline{toc}{chapter}{List of Publications}
\include{FrontMatter/Publications}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%% CHAPTERS %%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\setcounter{page}{0}
\pagenumbering{arabic}
\include{Chapters/chapter01}
\include{Chapters/chapter02}
\include{Chapters/chapter03}
\include{Chapters/chapter04}
\include{Chapters/chapter05}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%% BACK MATTER %%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Appendix
\begin{appendices}
\include{BackMatter/AppendixA}
\include{BackMatter/AppendixB}
\end{appendices}
% References
\addcontentsline{toc}{chapter}{\bibname}
\bibliographystyle{IEEEtran}
\bibliography{BackMatter/ASMBbib}
\end{document}