[Tex/LaTex] LaTeX Arial Narrow font

fonts

I would like to use Arial Narrow font in LaTeX. But I cannot find the package used to do it.

Best Answer

You can use any font installed on your system with XeLaTeX or 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}
Related Question