I'm trying to generate 3 bibliographies in my document, but can't seem to get the resetlabels option to work so that each bibliography has its own distinct numbering system. Here's an outline of what I'm doing:
Code: Select all
\usepackage[sort&compress, comma]{natbib}
\usepackage[resetlabels]{multibib}
\newcites{chapI, chaptII}{References, References}
\begin{document}
\include{intro}
\include{chapI}
\bibliographystylechapI{vancouver_modified}
\bibliographychapI{refs}
\include{chapII}
\bibliographystylechapII{vancouver_modified}
\bibliographychapII{refs}
\include{conclusion}
\bibHeading{References}
\bibliographystyle{vancouver_modified}
\bibliography{refs}
\end{document}
I'm not sure if I specified "resetlabels" in the right part. The numbering system of the "chap1" bibliography is based on that of the "intro/conclusion" biblio rather than a stand-alone biblio.
Another question: I cannot seem to be able to generate my 3rd bibliography.
Any suggestions? Thanks!