I have just changed computers, and running Biber 2.11 now produces this error:
Utils.pm:209> ERROR - Data file ... cannot be read in encoding 'UTF-8':
Can't decode ill-formed UTF-8 octet sequence <96> at C:\ ... Slurper.pm line 63
My .bib file is huge, having accumulated over years. Thus, I suspect that there's something malformed in it. Is there any rapid way to trouble-shoot it?
The new machine runs Win 10, Biber 2.11, XeLaTeX 2018.10.31, LaTeX2e 2018-04-01 and TeXLive 2018. The old machine ran Win 7 and slightly earlier versions of all of the above.
A MWE of the driver .tex file:
\documentclass{article} % also with beamer
\usepackage[utf8]{inputenc} % problem arises whether or not include this
\usepackage[backend=biber,bibencoding=utf8]{biblatex} % problem arises whether or not include this
\addbibresource{bib-mwe.bib}
\begin{document}
cite reference \cite{mal-rwws}
\printbibliography
\end{document}
Thanks!
.bibfile is consistently in an encoding different from UTF-8, then recoding will probably be a good idea. – moewe Nov 13 '18 at 21:11