I would like to have bibliographies at the end of each chapter in my Memoir-based book. I successfully used chapterbib for doing so. However, when I use the
sectionbib
option in chapterbib
to force that the bibliography becomes an unnumbered section, I keep getting a numbered section...So instead of having something like 1.7 References, I would like to see simply References (in Section*) style at the end of each chapter.
If I put the section biboption in the apacite package, I have the same result.
Basic structure of my tex document:
Code: Select all
\documentclass[10pt,twoside]{book}
\usepackage[natbibapa]{apacite}
\usepackage[sectionbib]{chapterbib}
\begin{document}
\chapter{Introduction}
\bibliographystyle{apacite}
\bibliography{bibfile}
\chapter{Method}
\bibliographystyle{apacite}
\bibliography{bibfile}
\end{document}