I am trying to produce Dũng as a name in my bib.
I do use \~u for this.
I am loading inputenc with the utf8 option. the final result is "Dng (2012)" in the text and "Dng, N. V. (2012)." in my Bib. So somehow the ũ is not encoded.
How can I tackle this?
Here is the code for the bib entry that I currently have:
@phdthesis{Dung:2012,
Author = {D{\~u}ng, Ng{\^o} Vi},
Date-Added = {2013-06-21T11:01:40GMT},
Date-Modified = {2013-06-21 11:29:57 +0000},
Title = {{An Institution-Based View of the Competitive Advantage of Firms in Emerging and Transition Economies}}
I do use biblatex to create my bibliography.

This is the entry for the bibliography with my current settings:
This is the result when I cite the author.

So somehow it does not seem that I get the correct ũ produced
This is a condensed verion of my LaTeX file
\documentclass[a4paper,openright,oneside,11pt]{article}
\usepackage[hyperref=true,
url=false,
isbn=false,
backend=biber
]{biblatex}
\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage{hyperref}
\usepackage{csquotes}
\usepackage[T1,T2A]{fontenc}
\bibliography{Bibliography_papers_test} %
\begin{document}
\section{One}
This is my test text \citeauthor{Dung:2012}
\addcontentsline{toc}{chapter}{Bibliography} \printbibliography%
\end{document}
Where
@phdthesis{Dung:2012,
Author = {D{\~u}ng, Ng{\^o} Vi},
Title = {{An Institution-Based View of the Competitive Advantage of Firms in Emerging and Transition Economies}},
Year = {2012}
}
Is my Bib file and

Is the corresponding pdf

bibtex. You simply can't use UTF-8 encoded.bibfiles if you are usingbibtex. You can switch tobiblatexandbiberwhich can handle this. Otherwise you need to use\~u. – Alan Munn Jun 21 '13 at 13:37.bibentry that you have? – Alan Munn Jun 21 '13 at 13:43\myfunction{u}), or are you looking only for a font-related solution? – Steven B. Segletes Jun 21 '13 at 14:10bibtex8can process utf8-encoded files. Note that it is not really utf8 aware: e.g.,change.case$won't work correctly, so you have to handle some entries specially. But it may be rather easier than switching to Biblatex. – Charles Stewart Jun 21 '13 at 16:23Here is the code for the bib entry that I have currently:
– wierts Jun 25 '13 at 14:05oˆis displayed correctly – wierts Jun 25 '13 at 15:44