我如何告诉 LaTeX 将附加内容写入bbl
文件?
我的问题背景(另请参阅下面的 MWE):目录中显示的参考书目的页码正确,当且仅当\addcontentsline{toc}{chapter}{Bibliography}
放置在thebibliography
环境的开头时。因此,使用bibTeX
我需要写入\addcontentsline{toc}{chapter}{Bibliography}
文件bbl
。如果我将其放在\begin{thebibliography}
页码之前参考书目第一页 - 1\end{thebibliography}
,如果我把它放在参考书目最后一页 + 1(在 MWE 中是正确的,但在一般情况下则不正确)。
\documentclass{book}
\begin{document}
\tableofcontents
\begin{thebibliography}{B}
\addcontentsline{toc}{chapter}{Bibliography}
\bibitem[B]{B}
A. Brown
\newblock {\em Mathematics}.
\end{thebibliography}
\end{document}