我可以在 luatex 中调整类的字距吗?

我可以在 luatex 中调整类的字距吗?

fg可以这样调整字距

\documentclass{article}
\usepackage{fontspec}

\directlua {
    fonts.handlers.otf.addfeature {
        name = "ktest",
        type = "kern",
        data = {
            ["f"] = { 
             ["g"] = 1000,
            }
        }
    }
}

\setmainfont{ebgaramond}[RawFeature=+ktest]

\begin{document}

abcdefghijklm.
a; b; c; d; f;

\end{document}

怎么样<greekorlatinletter>;?可以调整类别的字距吗?

相关内容