I'm revising my thesis. I'm in a U.S.A university (American English).
My Prof asks me to change "Naive Bayes" to "Naïve Bayes" in my thesis. However, things are not easy.
First thing is that how to add two dots above i. I solved this issue by using Microsoft Word, where "Naive" can be automatically converted to "Naïve". Then I copy it and paste to the Texmaker and run the LaTeX.
But the result is not what I want



Na\"iveand it should go well. – egreg Apr 23 '17 at 15:05ïis U+00EF LATIN SMALL LETTER I WITH DIAERESIS, which in the UTF-8 encoding is encoded by a sequence of two bytes:C3(195) followed byAF(175). Without\usepackage[utf8]{inputenc}this gets interpreted as two 8-bit characters. In the T1 font encoding (Wikipedia), C3 isÃand AF isŕ. – ShreevatsaR Apr 23 '17 at 19:47