我有这种风格从这篇博文。我正在使用 TeXworks 进行配置pdfLaTeX+MakeIndex+BibTeX
。
我在网上找到了一个可以工作的很好的最小代码。代码如下所示:
\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}
我的问题是,与下面的示例不同,我生成的 PDF 停止在出版物节。也就是说,它不包含子节参考研究论文。
答案1
第 66 行有这样的内容cv.sty
:
\usepackage[sorting=ynt,bibstyle=authoryear-comp,defernumbers=true,maxnames=20,firstinits=true, uniquename=init,dashed=false,doi=false,isbn=false,backend=biber]{biblatex}
因此你必须使用biber
而不是bibtex
。编译结果将是
pdflatex → biber → pdflatex
然后你会得到: