使用 LuaLaTeX 对高棉语进行错误渲染

使用 LuaLaTeX 对高棉语进行错误渲染

当我使用 XeLaTeX 编译以下 MWE 时,它运行良好。但是当我使用 LuaLaTeX 编译时,一些高棉元音缺失。

LuaLaTeX 支持高棉 Unicode 吗?或者这是由 fontspec 引起的问题?或者是否有其他软件包可以修复此问题?我是 LuaLaTeX 新手。这里是一种高棉字体。

\documentclass{article}
\usepackage{fontspec}
\usepackage{xltxtra}
\newfontfamily\khmerfont[Script=Khmer]{Khmer OS}
\newcommand{\textkh}[1]{\begingroup\khmerfont#1\endgroup}
\begin{document}
    Compile this with \XeLaTeX{} to see the correct rendering.
    \par
    \textkh{តើមានអ្វីប្លែក?}
    \par
    When compile with Lua\LaTeX{} \textkh{ើ} becames \textkh{ី}
\end{document}

相关内容