\documentclass[12pt]{report}
\usepackage{inputenc}
\usepackage{lipsum}
\usepackage{blindtext}
\usepackage{graphicx}
\usepackage{geometry}
\usepackage{setspace}
\usepackage[acronym]{glossaries}
\usepackage{fancyvrb}
\usepackage{fancyhdr}
\usepackage{cite}
\usepackage{amsmath,amssymb,amsfonts}
\usepackage{algorithmic}
\usepackage{textcomp}
\usepackage{hyperref}
\hypersetup{
colorlinks=false,
urlcolor=blue,
citecolor=blue}
\usepackage[all]{xy,xypic}
%\usepackage{hyperref}
% page margins
\geometry{a4paper, portrait, margin=25mm, bmargin=30mm,tmargin=30mm}
% the line spacing
\setstretch{1.3}
\pagestyle{fancy}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
% set the graphics folder path
\graphicspath{{figures/}}
% make refrences and abstract title to match the style
\renewcommand{\bibname}{References}
\renewcommand*\abstractname{\LARGE{\textbf{Abstract}}}
% start the page numbering
\setcounter{tocdepth}{3}
\setcounter{secnumdepth}{3}
\makenoidxglossaries
\setacronymstyle{long-short}
% Add any of the abbreviations used here
\newacronym{mosfet}{MOSFET}{Metal oxide semiconductor field effect transistor}
\newacronym{drc}{DRC}{Design Rule Check}
\newacronym{lvs}{LVS}{Layout Versus Schematic}
\begin{document}
\bibliographystyle{unsrt}
\include{pages/title}
\pagenumbering{gobble}
\include{pages/recommendation}
\include{pages/tprec-certificate}
\setstretch{1.3}
\include{pages/certificate}
\include{pages/declaration}
\include{pages/acknowledgement}
\setstretch{1.5}
\clearpage
\printnoidxglossary[title={\centering{Abbreviations}},type=\acronymtype,nonumberlist]
\include{pages/abstract}
\pagenumbering{roman}
\cleardoublepage
\renewcommand{\chaptermark}[1]{\markboth{#1}{}}
\renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\footrulewidth}{0.4pt}
\fancyhead[L]{\textbf{\leftmark}}
\fancyhead[R]{\textbf{\thepage}}
\cfoot{Department of Electronics and Instrumentation Engineering, SGSITS Indore}
\tableofcontents
\newpage
\listoffigures
\addcontentsline{toc}{chapter}{List of figures}
\newpage
\listoftables
\addcontentsline{toc}{chapter}{List of tables}
\newpage
\pagenumbering{arabic}
\include{chapters/chapter1}
\include{chapters/chapter2}
\include{chapters/chapter3}
\include{chapters/chapter4}
\newpage
\addcontentsline{toc}{chapter}{References}
\bibliography{references}
\include{appendix/appendix}
\end{document}