我需要一份个人出版物清单,该清单是个人实际文档的附录。我将其用于currvita
一份简单的简历,并尝试multibib
按照手册中的建议currvita
获取出版物清单,如下所示(我的.bib
文件名为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}
正常的书目工作没有问题,编译时没有实际错误,但是有一个警告
No file cv.bbl
并且未创建发布列表。
为什么它要寻找cv.bbl
?或者:为什么它没有被创建?
答案1
好吧。我真笨。在这种特殊情况下,我的 tex-Editor (Kile) 不会自动生成文件bbl
。aux
手动发布bibtex cv.aux
已经足够了。