Biblatex 作者年份格式存在问题

Biblatex 作者年份格式存在问题

我在 Biblatex 的样式方面遇到了意想不到的问题authoryear-comp。请参阅此 MWE:

\documentclass{article}
\usepackage[style=authoryear-comp,firstinits=true]{biblatex}
\usepackage[autostyle=false, style=british]{csquotes}

\begin{filecontents}{\jobname.bib}
  @article{JoeDoe2012,
    Author = {Joe Doe},
    Title = {My article's title},
    Journal = {My journal's title},
    Editor = {Ben Editor},
    URL = {http://webpage.com},
  }
\end{filecontents}

\addbibresource{\jobname.bib}

\begin{document}
  \cite{JoeDoe2012}
  \printbibliography
\end{document}

Doe 2012当我编译时,我得到的是文章的标题,而不是引用时得到的。

在此处输入图片描述

我是不是忘记了什么(明显的)事情?

答案1

您的参考书目条目中缺少年份/日期字段。

相关内容