I have bibliographies in some chapters and a final bibliography. That is working using bibunits.
But in the the ToC the chapter bibliographies shows up as unnumbered chapters instead of numbered sections. This is what I get:
Code: Select all
Contents 1
1 First 3
Bibliography 3
Code: Select all
Contents 1
1 First 3
1.1 Bibliography 3
I have searched the net, that was how I found the site, and I am pretty convinced it can't be done using options to packages.
Furthermore it looks like the heading of the final bibliography is dependent on whether I invoke the sectionbib or subsectionbib option to bibunits, is that WAD?
MWE:
Code: Select all
\documentclass[a4paper,numbib]{memoir}
\usepackage[sectionbib, globalcitecopy]{bibunits}
\usepackage{natbib}
\begin{document}
\tableofcontents
\begin{bibunit}[plainnat]
\chapter{First}
I looked in \citep{lshort}
\putbib[testbib]
\end{bibunit}
\chapter{Then}
\begin{bibunit}[plainnat]
I reexamined \citep{lshort}
\putbib[testbib]
\end{bibunit}
\newpage
\bibliography{testbib}
\end{document}
Code: Select all
@manual{lshort,
author = {Oetiket, T. and Partl, H. and Hyna and Schlegl, E.},
title = {The not-so-short introduction to Latex},
url = {http://www.ctan.org/tex-archive/info/lshort/english/lshort.pdf}
}