Possible Duplicate:
Multiple bibliographies
I'm trying to write a book with references in each chapter and
I would like to use chapterbib and natbib packages.
I can't really understand how to make things work.
My book is organized as follows:
settings.texwhich contains all the packages, commands etc that I use in my document (among the others:\usepackage{natbib},\usepackage{chapterbib})Chapter_01.tex(in which I'd like the references stored inreferences_01.bib)Chapter_02.tex(in which I'd like the references stored inreferences_02.bib).
I then have a Book.tex file that is made like this:
\input{settings_pdf.tex}
\begin{document}
\include{Chapter_01.tex}
\include{Chapter_02.tex}
\end{document}
What should I put at the end of each chapter in order to get the references and how should I compile the document to produce a pdf document?
bibtex <file>. Maybe the linked question could be rewritten to be more general. – lockstep Sep 28 '12 at 15:24