i want to suppress the item number of bibliography in the Table of contents. Searched a lot but could not find any relevant and easy fix for it. i use the following code.
// preambles
\documentclass[12pt]{report}
\SOME MORE PACKAGES
\usepackage[nottoc,numbib]{tocbibind}
// main.tex file
\input{chap1.tex}
\input{chap2.tex}
\input{bib.tex}
// bib.tex file
\titleformat{\chapter}{}{}{0em}{\bf \huge}
\begin{thebibliography}{99}
\bibitem{asdf}
X Y Z.
\bibitem
A B C
\end{thebibliography}
Current output
4 Conclusions ..... 30
5 Bibliography 32
Appendices 40
...
Expected output
4 Conclusions ..... 30
Bibliography 32
Appendices 40
...
Please suggest. I use \input{bib} for inserting my bibliography and i dont have the time fix it using \bibliography command. Found a lot of solutions. But wasnt able to incorporate in my current latex code
Note:
I managed to remove the chapter number in the Bibliography section using the \titleformat{...} line. But I am not able to remove it from Table of contents.
