使用 bibtex 时文本中出现标题而不是作者

使用 bibtex 时文本中出现标题而不是作者

我觉得这很奇怪。我找不到任何类似情况的参考资料,我找到的最接近的情况是使用 BibTeX 时出现 [?] 而不是作者。

六个月前,我编写了一篇论文,它运行良好,参考文献也显示正常。在新电脑上,新安装了 TeXmaker (4.4.1)。现在,文本中不再显示作者/年份,而是显示所引用文章的标题。

我从文本文件中取出一些前言来创建问题的最小工作示例。我的 tex 文件现在包含:

\documentclass[12pt, english, onehalfspacing, liststotoc, toctotoc, parskip,]{MastersDoctoralThesis}        
\usepackage[backend=bibtex,style=authoryear,natbib=true,bibencoding=ascii,dashed=false]{biblatex}
%\DeclareNameAlias{author}{last-first}
\usepackage[titletoc]{appendix}% http://ctan.org/pkg/appendices
\addbibresource{minimal.bib} % The filename of the bibliography
\usepackage[autostyle=true]{csquotes} 

\begin{document}
\tableofcontents
blah blah blah\citep{Nicholson1992}
\printbibliography[heading=bibintoc]
\end{document}

我的 bib 文件包括:

Automatically generated by Mendeley Desktop 1.17.10
Any changes to this file will be lost if it is regenerated by Mendeley.
BibTeX export options can be customized via Options -> BibTeX in Mendeley Desktop

@article{Nicholson1992,
author = {Nicholson, R L and Hammerschmidt, R},
doi = {10.1146/annurev.py.30.090192.002101},
issn = {0066-4286},
journal = {Annual Review of Phytopathology},
number = {1},
pages = {369--389},
publisher = {Annual Reviews, Palo Alto, USA},
title = {Phenolic Compounds and Their Role in Disease Resistance},
url = {http://www.annualreviews.org/doi/abs/10.1146/annurev.py.30.090192.002101},
volume = {30},
year = {1992}
}

如果我跑

pdflatex minimal.tex 
bibtex minimal
pdflatex minimal.tex 
pdflatex minimal.tex 

我没有收到任何错误,只有一条警告:

Package biblatex Warning: File 'minimal.bbl' created by wrong version.

否则,它会生成一个包含以下内容的 PDF 文本:

等等等等(“酚类化合物及其在抗病中的作用”)

我应该从哪里开始寻找解决方案?

相关内容