I am working on a 200+ pages document with currently 250+ bibliography references. I am currently switching my document from BibTeX to BibLaTeX (with bibtex8 set as its backend).
When the firstinits option is set to false, everything works, but when it is set to true, pdflatex stops with the message
! Package inputenc Error: Unicode char \u8:├. not set up for use with LaTeX.
See the inputenc package documentation for explanation. Type H for immediate help. ...
l.200
How can I find out what this refers to?
- Line 200 in my main document is the line after the
\printbibliographycommand (though my main document uses\inputto include numerous other.texfiles). - My bibliography is split into several
.bibfiles. - Line 200 in the generated
.bblfile is an empty line, so there should be no problem in there.
How can I find out which one is the offending entry?
bblfile for ├? It should give you the entry where the problem is. Also you might consider to switch tobiber, it might give a better handling of utf8. – Guido Sep 19 '15 at 19:39\documentclass{article}\usepackage[backend=bibtex8,firstinits=true]{biblatex}\begin{document}\cite{*}\printbibliography\end{document}plus a bibtex record with the character. But the problem does not depend on the actual latex/bibtex code, but the fact that errors in thebblare reported when they are typeset by\printbiliography. – Guido Sep 19 '15 at 20:06├does not appear in the entire.bblfile, and to me, it looks like a misinterpreted character code in the console rather than an actual bit of a file in its intended encoding, anyway. That is what I am trying to find out. I see myself unable to produce an MWE because I do not know what characteristics in a BibTeX record cause the error. So to speak, my question is not how to solve the issue, but how to reproduce it in an MWE. – O. R. Mapper Sep 19 '15 at 20:18\printbibliographyso the error line won't give you much info. – Ulrike Fischer Sep 19 '15 at 21:18