我正在使用简历模板由...制作罗布·J·海德曼并且 MWE 如下所示。过去,一切都运行良好,但现在却biblatex
无法正常工作(见下面的截图)。即使我更新了软件包,也没有成功。任何帮助解决此问题的方法都将不胜感激。
\documentclass[a4paper,11pt]{article}
\usepackage{cv}
\name{Rob J Hyndman}
\info{Address: & Department of Econometrics \& Business Statistics, Monash University, VIC 3800, Australia.\\
Phone: & +61 3 9905 2358\\
Email: & [email protected]\\
WWW: & robjhyndman.com}
\bibliography{CVTest}
\addtocategory{papers}{yaseen2005modeling}
\begin{document}
\maketitle
\begin{publications}
\printbib{papers}
\end{publications}
\end{document}
答案1
它在我的计算机上运行:linux+texlive+latest biblatex。
您能否确认biblatex
使用没有软件包的最小文档是否可行cv
?
\documentclass[a4paper,11pt]{article}
\usepackage{cv}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@article{ref1,
author = {Doe, J. and Dane, D., and Dewy, R.},
year = {2000},
title = {This and That},
journal = {Journal of Deep Understanding of Things},
}
\end{filecontents}
\name{Rob J Hyndman}
\info{Address: & Department of Econometrics \& Business Statistics, Monash University, VIC 3800, Australia.\\
Phone: & +61 3 9905 2358\\
Email: & [email protected]\\
WWW: & robjhyndman.com}
\bibliography{\jobname.bib}
\addtocategory{papers}{ref1}
\begin{document}
\maketitle
\begin{publications}
\printbib{papers}
\end{publications}
\end{document}