I am recently using the moderncv template with multibib package for writing my cv.
The problem that I encounter is as the following:
\documentclass[11pt,a4paper,sans]{moderncv}
\moderncvstyle{casual}
\moderncvcolor{blue}
\usepackage[scale=0.75]{geometry}
\usepackage{multibib}
\newcites{j}{Journals}
\begin{document}
\makecvtitle
\section{Publications}
\nocitej{wang2012}
\bibliographystylej{plain}
\bibliographyj{publications}
\end{document}
When I try to compile BiBTeX first, it also shows the error message: "Process exited with error(s)" and nothing else....
I do this on a Windows7 system, any suggestions? If not using the multibib package, everything works out fine, which means:
\documentclass[11pt,a4paper,sans]{moderncv}
\moderncvstyle{casual}
\moderncvcolor{blue}
\usepackage[scale=0.75]{geometry}
%\usepackage{multibib}
%\newcites{j}{Journals}
\begin{document}
\makecvtitle
\nocite{*}
\bibliographystyle{plain}
\bibliography{publications}
\end{document}
biblatexinstead ofmultibib. I think it is more convenient. But I don't know if that is an option for you. – jmc Mar 31 '12 at 17:32bibtex j(bibtex publicationsmight call the dummy bibliography file provided with moderncv, which does not has a reference forwang2012) – Xavier Mar 31 '12 at 23:10