\documentclass{report}
\usepackage{xcolor}
\definecolor{blue}{RGB}{243,102,25}
\usepackage[english]{babel}
\usepackage{enumitem}
\usepackage{caption}
\usepackage{subcaption}
\usepackage{booktabs}
\usepackage{pdflscape}
\usepackage{csquotes}
\input{structure}
\begin{document}
\tableofcontents
\chapter{Chapter1}
\input{ch1}
\chapter*{Bibliography}
\addcontentsline{toc}{chapter}{\textcolor{blue}{Bibliography}} \printbibliography[heading=none]
\end{document}
Following is structure.tex of MWE:
\usepackage[
backend=biber, style=numeric, sorting=nyt, sortcites=true, autopunct=true, autolang=hyphen, abbreviate=false, backref=true, ]{biblatex} \defbibheading{bibempty}{} \addbibresource{Reference.bib}
Following is Reference.bib for MWE:
@book{1.1, title={Securing critical information infrastructure: Global perspectives and practices}, author={Sharma, Munish}, year={2017}, publisher={Institute for Defence Studies and Analyses} }
Following is Ch1.tex of MWE:
The reference used here is \cite{1.1}
This works well and gives output pdf file.


\chapter*{Bibliography} \addcontentsline{toc}{chapter}{\textcolor{blue}{Bibliography}}are bit needed. And where does\chapterimagecome from? – daleif Mar 13 '24 at 10:39biberon your project and then compiling twice? Depending on your editor this does not happen automatically. – daleif Mar 13 '24 at 11:26\chapterimageislitesolution.cls– daleif Mar 13 '24 at 11:26\addbibresource{References.bib}is definitely wrong in the document body (and\printbibliographycan only sensibly used in the document body), so it appears that the first code snippet should lose the\addbibresource{References.bib}. The LaTeX run on your document should finish without errors. You should then run Biber (see https://tex.stackexchange.com/q/63852/35864 and https://tex.stackexchange.com/q/154751/35864) and then LaTeX twice more. – moewe Mar 13 '24 at 20:29Valerie Jeffcott and daleif . Thank You ... to all of you for helping me out with latex related errors – SDe Mar 18 '24 at 07:34