It could be defined in the document class you are using, in your template, some package; this information is missing. The code you showed doesn't cause this.
Try this, click "Run LaTeX here", it's the same settings as you have, except that I removed the
defernumbers
and keyword options (the code example and bibliography items are from my
LaTeX Cookbook):
Code: Select all
\documentclass{report}
\usepackage[backend=bibtex,style=ieee,natbib=true,maxnames=100,minnames=100]{biblatex}
\begin{filecontents}{references.bib}
@book{DK86,
author = "D.E. Knuth",
title = "The {\TeX}book",
publisher = "Addison Wesley",
year = 1986
}
@article{DK89,
author = "D.E. Knuth",
title = "Typesetting Concrete Mathematics",
journal = "TUGboat",
volume = 10,
number = 1,
pages = "31--36",
month = apr,
year = 1989
}
@book{Lamport,
author = "Leslie Lamport",
title = "\LaTeX: A Document Preparation System",
publisher = "Addison Wesley",
year = 1986
}
\end{filecontents}
\addbibresource{references.bib}
\begin{document}
\chapter{\TeX}
To study \TeX\ in depth, see \autocite{DK86}. For writing math texts,
see \autocite{DK89}.
\chapter{\LaTeX}
The basic reference for \LaTeX\ is \autocite{Lamport}.
\addcontentsline{toc}{section}{References}
\printbibliography[heading=subbibliography]
\end{document}
Perhaps post some more information. A
refsection
setting may be hiding somewhere.
Stefan