I'm writing a thesis and would like to include a bibliography at the end of each chapter. I found the multibib package, and it seemed to provide exactly what i need. However, when i try to build my document in TXC, bibtex gets confused and tells me the references are not defined, I'm not citing anything and didn't define any bib style or source.
The main document amongst other stuff contains the following (the file for chapter 1 is chap1, while its references are stores in bib1):
Code: Select all
\documentclass[pdftex, a4paper, titlepage, final, twoside, headsepline, 12pt]{scrbook}
\usepackage{multibib}
\newcites{chone}{References}
\begin{document}
\input{chap1.tex}
\bibliographystylechone{unsrt}
\bibliographychone{bib1}
\end{document}
Thanks for any help