I have a problem with the following character
ẽ: e with tilde
I am using UTF-8 encoding and I get the following error
! Package inputenc Error: Unicode char \u8:ẽ not set up for use with LaTeX.
I am aware of this solution: \~e but the problem is that the ẽ that concerns me is the name of an author that is inside a bibtex that is automatically generated by mendeley...
I could, however, modify it in mendeley and cahnge ẽ for \~e, but is not a very elegant solution...
Anyway, I can let go this and simply replace it for e if there is no solution. I am just curious as to why UTF-8 does not handle this? I thougth UTF-8 handled every possible character.
MWE:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\begin{document}
This does not work: ẽ
This works: \~e
\end{document}
\usepackage[utf8]{inputenc}, and if this is not sufficient, which seems to be your case, to use\DeclareUnicodeCharacterto replace a unicode character with a latex sequence – Vincent Nivoliers Nov 12 '12 at 13:47utf8x, but avoid it. Better use XeTeX. It worse being used. – m0nhawk Nov 12 '12 at 13:48