\documentclass[12pt,a4paper]{mwrep}
...
\chapter{First chapter}
...
\chapter{Another chapter}
...
\begin{thebibliography}{999}
...
\end{thebibliography}
我在目录中有:
1. First chapter ....... 1
2. Another chapter ..... 1
Bibliography ........... 1
我需要:
1. First chapter ....... 1
2. Another chapter ..... 1
3. Bibliography ........ 1
如何才能做到这一点?
答案1
在序言中添加以下内容:
\usepackage{etoolbox}
\patchcmd{\thebibliography}{*}{}{}{}
这样,调用\chapter*{\bibname}
就变成了\chapter{\bibname}
,因为我们正在告诉将变为*
无。