I'm starting using multibib package and I have a big problem. It does not give any error but the bibliography is empty.
Here is an example.
Code: Select all
\documentclass{article}
\usepackage{multibib}
\newcites{J}{Journal Papers}
\newcites{C}{Conference Papers}
\begin{document}
\section{Publications}
\nociteJ{exart1}
\bibliographystyleJ{plain}
\bibliographyJ{mycit}
\nociteC{exconf1}
\bibliographystyleC{plain}
\bibliographyC{mycit}
\end{document}
Code: Select all
@article{exart1,
author = {Surname, Name},
title = {Example 1},
journal = {exjournal},
year = {2013},
volume = {1},
pages = {1--12}
}
@conference{exconf1,
author = {Surname, Name},
title = {Example 2 conf},
booktitle = {Proc. Conf ex},
year = {2010}
}
Note: the following code works perfectly
Code: Select all
\nocite{exart1,exconf1}
\bibliographystyle{plain}
\bibliography{mycit}