Bibliography not in ToC when using biblatex/biber
See sections 3.6.7, 3.8, and 4.9.2.1 of the biblatex
manual. In the following example, I'm assuming that you a) use a class that features \bibname
(i.e., one with the \chapter
sectioning command) b) don't want to number your bibliography chapter.
\documentclass{report}
\usepackage{biblatex}
\DefineBibliographyStrings{english}{%
bibliography = {References},
}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@misc{A01,
author = {Author, A.},
year = {2001},
title = {Alpha},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{document}
\tableofcontents
\chapter{First}
Some text \autocite{A01}.
\printbibliography[heading=bibintoc]
\end{document}
Though the problem is solved, here is my alternative solution for biblatex
.
\printbibliography[heading=bibintoc,title={References}]
.
The title
would override the section title.
Based on lockstep's codes, My solution would be
\documentclass{report}
\usepackage{biblatex}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@misc{A01,
author = {Author, A.},
year = {2001},
title = {Alpha},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{document}
\tableofcontents
\chapter{First}
Some text \autocite{A01}.
\printbibliography[heading=bibintoc,title={References}]
\end{document}