i have a kile project file, where the main .tex file includes 2-3 others (as chapters). i'm using the chapterbib package with the intention of having a bibliography section after each chapter, rather than at the end of the report/book.
my problem is that quickbuild does not run bibtex on all the files of the project, but only on the main/master file.
does anyone know how to configure kile to do what i need

[additional remark: running at the console
- latex main
bibtex chapter1
bibtex chapter2
latex main
latex main
my main/master file looks like:
Code: Select all
\documentclass[a4paper,10pt]{report}
\usepackage{manymanypackages}
\bibliographystyle{plain}
\usepackage{chapterbib}
\begin{document}
\include{chapter1}
\include{chapter2}
\end{document}
Code: Select all
\chapter{Chapter Title}
... content ...
\bibliographystyle{plain}
\bibliography{mybib}