I have a report created in Latex:
\documentclass{report}
\usepackage[backend=bibtex]{biblatex}
\addbibresource{testbib.bib}
\begin{document}
\tableofcontents
\chapter{First chapter}
For more information see \cite{ahu61}.
\printbibliography
\end{document}
The Bibliography is not present in the Table Of Contents. How to fix?

\printbibliography[heading=bibintoc]. But are you using bibtex as you state in the title and the tag, or biblatex as it appears in the MWE? – Phelype Oleinik Nov 08 '18 at 22:26.auxfile withbibtex. I use the[]in \usepackage[]{biblatex}` to specify how bibliography should be sorted and cited. – Viesturs Nov 08 '18 at 22:32backend=bibtexthere. You are correct. If it worked, then your question is a duplicate of: Bibliography not in ToC when using biblatex/biber. – Phelype Oleinik Nov 08 '18 at 22:34