使用 Bibtex 时无法显示正确的参考书目页码

使用 Bibtex 时无法显示正确的参考书目页码

使用 bibtex,我无法在目录中获得正确的参考书目页码。目录显示参考书目的最后页码,因此在我的情况下,在目录底部我得到的是“9 参考书目 75”,但它应该是“71”。我无法修复它。

\documentclass[a4paper,11pt]{book}
\pdfpagewidth
\paperwidth
\pdfpageheight
\paperheight
\usepackage[italian]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage{graphicx}
\makeindex
\usepackage{url}
\usepackage{fancyhdr}
\usepackage{geometry}
\usepackage{rotating}
\usepackage{caption}
\geometry{a4paper,tmargin=3cm,bmargin=4cm, lmargin=3.7cm,rmargin=3.7cm} 
\usepackage{multirow}
\usepackage{splitbib}
  \begin{document}
\cite{example}

\begingroup
\pagestyle{plain}
\sloppy
\begin{category}[]{name}
  \SBentries{example}
\end{category}


\bibliographystyle{plain}
\bibliography{name of the bib file}
\addtocounter{chapter}{1}
\addcontentsline{toc}{chapter}{\protect\numberline{\thechapter}\bibname}

\endgroup


\end{document}

答案1

正如评论中所说:这是代码片段,它将执行以下任务:

\cleardoublepage
\addcontentsline{toc}{chapter}{\protect\numberline{\thechapter}\bibname}
\bibliography{name of the bib file}

:-)

相关内容