EDITAR 1: Aquié o código completo, incluindo arquivos .tex
e .bib
. Qualquer ajuda?
Estou tentando escrever um artigo, mas fico o dia todo compilando e sempre dá tudo errado. Eu escrevi um pequeno código para o exemplo:
\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}
As referências são armazenadas noReferences.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},
}
Sempre quando compilo, recebo
O arquivo terminou durante a verificação do uso de
\field. \begin{document}
Alguma dica do que está acontecendo?