问题文件在扫描 \field 的使用时结束。编译时 \begin{document}

问题文件在扫描 \field 的使用时结束。编译时 \begin{document}

编辑1: 这里是完整代码,包括.tex.bib文件。有什么帮助吗?

我正在尝试写一篇文章,但我整天都在编译,而且总是出错。我为示例写了一小段代码:

\documentclass[10pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[
backend=biber,
citestyle=authoryear-comp,
bibstyle=authoryear,        
giveninits=true,            
maxcitenames=2,             
uniquelist=false,           
sorting=ynt,                
sortcites,                  
maxbibnames=99, 
url=false,
eprint=false,
dashed=false,               
]{biblatex}
\addbibresource{References.bib}
\begin{document} 
\section{Introdução}
\parencite{Paerl2009}
\parencite{Pantelic2013}
\end{document}

参考资料存储在References.bib

@Article{Paerl2009,
  author   = {Paerl, H. W. and Huisman, J.},
  title    = {Climate change: a catalyst for global expansion of harmful cyanobacterial blooms},
  journal  = {Environmental Microbiology Reports},
  year     = {2009},
}

@Article{Pantelic2013,
  author   = {Pantelic, D. and Svircev, Z. and Simeunovic, J. and Vidovic, M. and Trajkovic, I.},
  title    = {Cyanotoxins: characteristics, production and degradation routes in drinking water treatment with reference to the situation in {Serbia}},
  journal  = {Chemosphere},
  year     = {2013},
}

每次我编译时,我都会得到

扫描时文件结束使用\field. \begin{document}

有什么迹象表明发生了什么事吗?

相关内容