在 XeLaTeX 中使用 uarial 字体

在 XeLaTeX 中使用 uarial 字体

我是 LaTeX 新手,无法使用字体uarial。我使用 TeXLive 查找字体,如下所示:

\IfFileExists{uarial.sty}
{
    \usepackage[english]{babel}
    \usepackage[T1]{fontenc}
    \usepackage{uarial}
    \renewcommand{\familydefault}{\sfdefault}
}

但是运行时出现以下错误;

! Couldn't find Arial font.

 you may need to install 'nonfree' fonts on your system
 Type  H <return>  for immediate help.

据我所知,TeXLive 中包含 Arial 字体,如果我错了,请纠正我。我还安装了 nonfreefonts(我使用的是 Windows)

TeXLive 中是否包含其他可供我使用的类似 arial 的字体?

提前致谢。

答案1

XeTeX 的全部意义在于使用系统字体,因此您不需要使用 TeXLive 提供的克隆,您可以(如果愿意)直接使用系统 Arial。

在此处输入图片描述

\documentclass{article}

\usepackage{fontspec}
\setmainfont{Arial}

\begin{document}

Hello World
\end{document}

相关内容