Trying to use LuaTeX font support in some big document, everything went fine except a little glitch with Asana Math font. Here is the issue:
\documentclass{standalone}
\usepackage{unicode-math}
\begin{document}
\setmathfont{Asana Math} %(probably unrelated, but without this nothing will show up)
Spacing issues:
\begin{tabular}{cccccccc}
\setmathfont{Asana Math}
$α_1$ & $ω_a$ & $ωa$ & $ω_1$ & $ω^a$ & $\omega_1$ & $Ω_1$ & $λ_k$ \\
\setmathfont{XITS Math}
$α_1$ & $ω_a$ & $ωa$ & $ω_1$ & $ω^a$ & $\omega_1$ & $Ω_1$ & $λ_k$ \\
\end{tabular}
\end{document}

ω has a little problem with subscripts (and superscripts). Updated the font and unicode-math with the last versions available on CTAN, but the problem remains.
Any idea of what can cause this? Any workaround that won't require to spot every occurence of "ω_"?


xelatexdoesn't exhibit the problem. – Caramdir Jul 27 '11 at 19:54