使用 fontspec 调整字母间距(字距)

使用 fontspec 调整字母间距(字距)

当我读到fontspec 手动的似乎我应该能够放松对如下类型行的跟踪:

\documentclass[border=1mm]{standalone}
\usepackage{fontspec}

\addfontfeature{LetterSpace=50.0}

\begin{document}

    Full fathom five thy father lies

\end{document}

但不起作用。需要改变什么?

答案1

没有可供添加的字体选择。

\RequirePackage{luatex85}
\documentclass[border=1mm]{standalone}
\usepackage{fontspec}

\begin{document}
\fontspec{Latin Modern Roman}

Full fathom five thy father lies

\addfontfeature{LetterSpace=50.0}
Full fathom five thy father lies

\end{document}

显然,您不应该\fontspec以这种方式使用基本字体,但对于示例的目的来说,它应该足够了。

添加字母间距

相关内容