Closed amelieled closed 1 month ago
Works fine for me with Lualatex engine - if you are using pdflatex, you will need more options and some config - best to ask on tex.stackexchange.com for help with that.
In this particular example \u{s}
appears to be the wrong character anyway. According to https://doi.org/10.1017/S0956796809990293 it's "Rok Strniša" (that is \v{s}
and not \u{s}
). If you use the correct character in UTF-8 (which I assume has a precomposed form), you get no error and the expected output.
\documentclass[british]{article}
\usepackage[T1]{fontenc}
\usepackage{babel}
\usepackage{csquotes}
\usepackage[backend=biber, style=authoryear, maxbibnames=999]{biblatex}
\begin{filecontents}{\jobname.bib}
@Article{ott_2010,
author = {Sewell, Peter and Nardelli, Francesco Zappa
and Owens, Scott and Peskine, Gilles
and Ridge, Thomas and Sarkar, Susmit and Rok Strniša},
title = {Ott: Effective tool support for the working semanticist},
journal = {Journal of Functional Programming},
year = {2010},
volume = {20},
number = {1},
pages = {71--122},
doi = {10.1017/S0956796809990293},
groups = {Semantics},
publisher = {Cambridge University Press}
}
\end{filecontents}
\addbibresource{\jobname.bib}
\addbibresource{biblatex-examples.bib}
\begin{document}
Lorem \autocite{sigfridsson,ott_2010}
\printbibliography
\end{document}
In the reference:
the Unicode character
\u{s}
is not supported.