ModernCV 列举了参考文献列表?

ModernCV 列举了参考文献列表?

我正在尝试使用 modernCV 构建简历。我想使用 multibib 获取我的期刊出版物的枚举列表,与我的会议出版物分开。我似乎无法获得任何标准的 BibTex 样式来提供枚举出版物列表,但它们都没有数字(例如,我希望参考书目在条目前有 [1] [2] [3])。我的 MWE:

\documentclass[11pt,a4paper,sans]{moderncv}

\moderncvstyle{classic}    
\moderncvcolor{green}  
\usepackage[scale=0.75]{geometry}
\newcommand{\itcs}{Innovations in Theoretical Computer Science}
\usepackage{multibib}
\newcites{cp,misc}{{Conference Proceedings},{Journal Publication}}

\firstname{}
\familyname{}

\begin{document}

\renewcommand*{\bibliographyhead}[1]{}
\makecvtitle


\section{Journal Publications}
\nocitecp{*} % cite your books
\bibliographystylecp{unsrt}
\bibliographycp{publications} % 'publications' is the name of a BibTeX file
\section{Conference Publications}
\nocitemisc{*} % cite other elements
\bibliographystylemisc{unsrt}
\bibliographymisc{techreports} % 'publications' is the name of a BibTeX file

\end{document}

publications.bib 和 techreports.bib 都包含:

@book{ab94,
   author = {Charalambos D. Aliprantis and Kim C. Border},
   year = {1994},
   title = {Infinite Dimensional Analysis},
   publisher = {Springer},
   address = {Berlin}
 }

是否有人知道为什么 unsrt 通常会提供列举的参考书目,但在这种情况下却不这样做?

相关内容