使用 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}

我的圍脖文件包含:

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:

等等等等(「酚類化合物及其在抗病性中的作用」)

我該從哪裡開始尋找解決方案?

相關內容