目录中缺少数字

目录中缺少数字

所以我有一个小问题,我添加了:

\addcontentsline{toc}{chapter}{Table des figures}
\listoffigures
\addcontentsline{toc}{chapter}{Bibliographie}
\printbibliography

并且它可以工作,但是,在我的table of contents章节“标题”中,数字没有显示

我该如何改正?

答案1

tocbibind与 配合不太好biblatex,显然这里用的是 (由于\printbibliography

可以使用 获得编号的参考书目\printbibliography[heading=bibnumbered],而编号的图表列表则需要稍微重新定义和使用tocfile{...}{lof}

\documentclass{book}
\usepackage[french]{babel}

\usepackage[OT1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[nottoc]{tocbibind}


\usepackage{biblatex}


\renewcommand{\listoffigures}{\begingroup
  \tocchapter
  \tocfile{\listfigurename}{lof}
\endgroup
}


\addbibresource{biblio.bib}

\begin{document}
\tableofcontents

\listoffigures

\cite{Lam94}
\printbibliography[heading={bibnumbered}]

\end{document}

在此处输入图片描述

相关内容