I have a bibliography which contains the character \={u} in an author's name. This should be the letter u with a bar on top. When executing pdflatex -> biber -> pdflatex, I get the error message:
Package inputenc Error: Unicode char \u8:? not set up for use with LaTex (where ? is the character I would like to see)
The character is printed correctly when entered in normal text.
The error doesn't occur when I'm not using the package biblatex, but create my bibliography with bibtex.
Does anyone have an idea, how I can enter this character in my bibliography?
Here is a minimal example of the main file :
\documentclass[a4paper, 11pt,BCOR=1.5cm]{scrbook}
\usepackage[utf8]{inputenc}
\usepackage[backend=biber]{biblatex}
\addbibresource{MinEx_ubar_Bib.bib}
\begin{document}
Bl\={u}b
bla \cite{ubar}
\printbibliography
\end{document}
The corresponding .bib looks like this:
@Article{ubar,
Title = {blabla},
Author = {Bl\={u}b},
Journal = {xxx},
Year = {2013},
}


biberis converting it to real unicode, since your document is utf8 encoded. Might be worth adding to the answer, if no other is floating around. – Johannes_B Mar 26 '15 at 20:07