删除参考书目前的“第 1 章”

删除参考书目前的“第 1 章”

相关的 latex 如下。当我编译时,我的参考书目上方出现了一个粗体大的第 1 章。我该如何删除它?

\documentclass[12pt]{report}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{caption}
\usepackage{subcaption}
\usepackage{float}
\usepackage[nottoc,numbib]{tocbibind}
\def\thesection{\arabic{section}}
\begin{document}

\tableofcontents
\clearpage

\section{Introduction.}
\clearpage

\addcontentsline{toc}{chapter}{Bibliography}
\renewcommand{\addcontentsline}[3]{}

\begin{thebibliography}{9}
\end{thebibliography}
\clearpage

\end{document}

答案1

默认是无编号章节,但您已使用

\usepackage[nottoc,numbib]{tocbibind}

numbib指定参考书目应该编号

相关内容