Biblatex 未找到引用

Biblatex 未找到引用

我一直在瘋狂地試圖解決這個問題。我最近從 轉到natbibbiblatex因為我的許多參考資料都包含 unicode 字元。我的引文曾經可以使用 find 進行查找natbib,但由於我已經轉移到biblatex,所以找不到它們,導致以下結果:

在此輸入影像描述

以下是我的最小工作範例:

\documentclass[twoside,a4paper, 12pt]{memoir}


%Citations
\usepackage{babel}
\usepackage{csquotes}
\usepackage[citestyle=alphabetic,bibstyle=authoryear]{biblatex}
\addbibresource{test.bib}

\begin{document}

Sed ut perspiciatis \parencite{wilk1968}.

\printbibliography


\end{document}

我的.bib文件 ( test.bib) 與該文件位於同一目錄中,.tex如下所示:

@article{wilk1968,
  langid = {english},
  title = {Probability {{Plotting Methods}} for the {{Analysis}} of {{Data}}},
  volume = {55},
  issn = {00063444},
  url = {https://www.jstor.org/stable/2334448?origin=crossref},
  doi = {10.2307/2334448},
  abstract = {This paper describes and discusses graphical techniques, based on the primitive empirical cumulative distribution function and on quantile (Q-Q) plots, percent (P-P) plots and hybrids of these, which are useful in assessing a one-dimensional sample, either from original data or resulting from analysis. Areas of application include: the comparison of samples; the comparison of distributions; the presentation of results on sensitivities of statistical methods; the analysis of collections of contrasts and of collections of sample variances; the assessment of multivariate contrasts;\_ and the structuring of analysis of variance mean squares. Many of the objectives and techniques are illustrated by examples.},
  number = {1},
  journaltitle = {Biometrika},
  urldate = {2018-06-01},
  date = {1968-03},
  pages = {1},
  author = {Wilk, M. B. and Gnanadesikan, R.},
  file = {}
}

我的.bib檔案是使用 Zotero 的 Better BibLaTeX 匯出的。任何幫助都會受到極大的歡迎。

相關內容