編輯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}
有什麼提示嗎?