tocbibind 没有向目录中添加编号条目

tocbibind 没有向目录中添加编号条目

可能重复:
由 \addcontentsline 添加的部分位于错误页面

我在报告类中有一份文件

\documentclass[12pt,a4paper]{report}  
\linespread{1.5}  
\usepackage[T1]{fontenc}   
\usepackage[utf8]{inputenc}  
\usepackage[ngerman]{babel}    
\usepackage[natbib=true,style=numeric,doi=false,isbn=false,url=false,maxcitenames=2{biblatex}  
\bibliography{mybib}  
\usepackage[numbib]{tocbibind}  
\begin{document}    
\tableofcontents  
\chapter{test}  
\printbibliography  
\end{document} 

这不会添加参考书目条目。更改\printbibliography

\printbibliography[heading=bibintoc]

有效,尽管我不知道它实际上做了什么。不过,条目没有编号,它看起来像这样

Table of Contents  
Table of Contents ................ 1  
1 test ........................... 2  
Literatur ........................ 3

我的问题:什么是heading=bibintoc自动编号?如何才能让参考书目自动编号?

答案1

除了使用tocbibind,您还可以简单地使用bibnumbered标题,这将创建一个编号标题,该标题也会添加到目录中:

\printbibliography[heading=bibnumbered]  

相关内容