I have a document with Cyrillic, English and German. All worked well so far. But now I need a special Character in the bibliography.bib file. Its an \.{E}
If I just put that in there it gives me the following error:
! Package inputenc Error: Unicode char \u8:Ė not set up for use with LaTeX.
Here's a sample code that reproduces that behavior:
\documentclass[12pt,a4paper]{article}
\usepackage{amsmath,amsthm,amssymb,amsfonts}
\usepackage[T1,T2A]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[english,russian,ngerman]{babel}
\usepackage[backend=biber,bibencoding=utf8]{biblatex}
\usepackage{filecontents}
\begin{filecontents}{onebook.bib}
@book{eichenbaum,
author={{\.{E}}jchenbaum},
title={Wie Gogol's \enquote{Mantel} gemacht ist},
}
\end{filecontents}
\addbibresource{onebook.bib}
\nocite{*}
\begin{document}
\.{E}jchenbaum
Гоголь
Münze
\printbibliography
\end{document}
If I put a regular E in that .bib file, I get the following (and correct encoding as I want it outside the bibliography):

If I put that \.{E} in the .bib file and I comment out the line:
% \usepackage[utf8]{inputenc}
Then I get the following:

So the funny thing is, I can get the bibliography interact with my document file at the cost of losing encoding of regular text in there ...
As always, I appreciate any kind of help! Thanks!
\usepackage{newunicodechar}and\newunicodechar{Ė}{\.{E}}should do. – egreg Apr 25 '14 at 15:17XeLaTeXandfontspec(and a font that contains all the glyphs such as Minion Pro) I have no problem to compile. – Bernard Apr 25 '14 at 15:43