I need a list of own publications inside a c.v. which is an appendix to my actual document. I'm using currvita for a simple c.v. and I'm trying to employ multibib as suggested in the currvita manual to get the publication list like this (my .bib file is called bibliography.bib)
\documentclass[11pt,a4paper,BCOR10mm,DIV11,toc=listof]{scrbook}
\usepackage{multibib}
\usepackage[ManyBibs]{currvita}
\newcites{cv}{Publikationen}
\bibliographystyle{hep}
\bibliographystylecv{hep}
\begin{document}
%lots of stuff and citations
\bibliobgraphy{bibliography}
\begin{cv}{}
\begin{cvlist}{Publikationen}
\nocitecv{cite1,cite2,cite3}
\item \bibliographycv{bibliography}
\end{cvlist}
\end{cv}
\end{document}
The normal bibliography works without a problem and there is no actual error when compiling, but a warning
No file cv.bbl
and the publication list is not created.
Why is it trying to look for cv.bbl? Or: why is it not created?
(pdf)latex test+bibtex test+bibtex cv+(pdf)latex test+(pdf)latex test. – Gonzalo Medina Mar 28 '11 at 22:58