LaTeX Arial 窄字体

LaTeX Arial 窄字体

我想在 LaTeX 中使用 Arial Narrow 字体。但我找不到用于执行此操作的软件包。

答案1

您可以将系统上安装的任何字体与 XeLaTeX 或 LuaLaTeX 一起使用。

% Compile with xelatex or lualatex
% source file should be UTF-8 encoded
\documentclass{article}
\usepackage{fontspec}
\setsansfont[Ligatures=TeX]{Arial Narrow}
\begin{document}
\sffamily Some Arial Narrow
\end{document}

答案2

您可以像这样选择 Nimbus Sans L Condensed(几乎与 Helvetica Condensed/Arial Narrow 相同):

\fontfamily{phv}\fontseries{mc}\selectfont

相关内容