I'm trying to learn how to work with utf-8 bib entries and am having difficulties. Below is my example, I've tried using lualatex and pdflatex, but either way ... biber crashes ... which I don't understand, since I thought it could handle utf8.
Thanks,
Geoff
Code: Select all
\begin{filecontents}{\jobname.bib}
@article{vanDerWerfLCA,
author={van der Werf, Hayo M and ,G. and Corson,Michael S. and Wilfart,Aurélie},
year={2013},
month={06},
title={LCA Food 2012--towards sustainable food systems},
journal={The International Journal of Life Cycle Assessment},
volume={18},
number={5},
pages={1180-1183},
}
\end{filecontents}
\documentclass{article}
\usepackage{csquotes}
\usepackage[british]{babel}
\usepackage[backend=biber,style=apa]{biblatex}
\DeclareLanguageMapping{british}{british-apa}
\addbibresource{\jobname.bib}
\begin{document}
Article by \parencite{vanDerWerfLCA}
\printbibliography
\end{document}