I use chapterbib and bibtex for my thesis (no natbib, as it interferes with the class file). The chapter wise bibliographies are listed at the chapter level in the ToC. How can I get it to position at the section level instead?
Asked
Active
Viewed 1,514 times
0
lockstep
- 250,273
1 Answers
1
The chapterbib package provides the sectionbib option aimed at putting bibliographies on section level in bookish (book, report...) documents. Check §5 of the documentation.
Here's a MWE:
\documentclass{report}
\begin{filecontents}{chap1.tex}
\chapter{First Chapter}
\section{A section}
\blindtext
\cite{book-full}
\bibliographystyle{plain}
\bibliography{xampl}
\end{filecontents}
\begin{filecontents}{chap2.tex}
\chapter{Second Chapter}
\section{Another section}
\blindtext
\cite{article-full}
\bibliographystyle{plain}
\bibliography{xampl}
\end{filecontents}
\usepackage[sectionbib]{chapterbib}
\usepackage{blindtext}
\begin{document}
\tableofcontents
\include{chap1}
\include{chap2}
\bibliographystyle{plain}
\bibliography{xampl}
\end{document}
And a shot of the table of contents:

henrique
- 6,616
-
My sincere apologies... it was the university thesis class file that was inserting an additional toc entry at the chapter level. I've commented out that line and all's well. Thanks :) – Aug 27 '13 at 16:40
sectionbiboption is supposed to do so (\usepackage[sectionbib]{chapterbib}), but I haven't tested it. – henrique Aug 27 '13 at 16:14latexasksRerun to get cross-references right)? Please, check if the answer solves your issue; if not, I'm afraid I haven't quite followed you: perhaps, you should edit your question then. – henrique Aug 27 '13 at 16:39