如何在 Ubuntu 上使用 XeTeX 下载的字体

如何在 Ubuntu 上使用 XeTeX 下载的字体

我想使用丰廷我的 XeTeX 文档中的字体。

我应该执行哪些步骤来下载字体(我应该选择 TTF 还是 OpenType)以及应该将其存储在哪里(在 Ubuntu 上)?XeTeX 如何找到此字体?

我正在使用安装在自定义位置的 TexLive 2011 (/somepath/texlive/2011)

答案1

/usr/local/share/fonts如果您希望在整个系统范围内使用字体,请在 安装字体;~/.fonts如果您仅希望在当前用户范围内使用字体,请在 安装字体:

$ sudo cp Fontin*.otf /usr/local/share/fonts

然后您可以检查字体fc-list

$ fc-list : family file | grep -i fontin
/usr/local/share/fonts/Fontin-SmallCaps.otf: Fontin SmallCaps,Fontin
/usr/local/share/fonts/Fontin-Italic.otf: Fontin
/usr/local/share/fonts/Fontin-Bold.otf: Fontin
/usr/local/share/fonts/Fontin-Regular.otf: Fontin

它为你提供了在 XeTeX 中使用的名称(使用fontspec)。例如:

\setmainfont{Fontin}

相关内容