In monographs, references are often put at the end of each chapter, and the bibunits package can be used. References in the Table of Contents(ToC) should have the same level as section as follows:
CONTENTS...................1
1 XX.......................3
1.1 XX ................3
1.2 XX ................4
References.............6
2 XX.......................7
2.1 XX ................7
... ...
(correct ToC above)
However, I get the following ToC where References appear as chapter level.
CONTENTS...................1
1 XX.......................3
1.1 XX ................3
1.2 XX ................4
References.................6
2 XX.......................7
2.1 XX ................7
... ...
(incorrect ToC above)
Here are my codes.
\documentclass{book}
...
\usepackage[sectionbib]{bibunits}
...
\begin{document}
...
\bibliographyunit[\chapter]
...
\chapter{XX}
\section{XX}
...
\putbib
...
\chapter{XX}
...
\end{document}
How can I get the correct ToC.
Any response would be appreciated.
--
Best wishes,
radiofeda
\addcontentsline....? – Herbert Jan 9 '11 at 14:19