Possible Duplicate:
TeX accents do not seem to work with fontspec and xe/lua/latex
Very frequently I need to write letters with dots below (like ḥ or ṭ) for transliteration. It's ok when the font I'm using comes with the character, but I can't use that character with other fonts.
It used to work with xelatex and xunicode package, I'd just use \d{t}, for example, but that doesn't seem to be the case anymore, it just works if the font has that particular character.
Is there a way to "force" a dot below a letter in any font?
Here is the basic preamble I've been using:
\documentclass{article}
\usepackage{fontspec}
\usepackage{xunicode}
\setmainfont{Minion Pro}
EDIT:
OK, I found the simplest solution myself, I just changed the preamble to (all the rest being equal):
\documentclass{article}
\usepackage{xunicode,xltxtra}
So now I can put that \d{} (dot below) on any character, any font.
I hope this helps people with the same issue.
