VSCode
我和 一起使用MiKTeX
。虽然我在 上检查 时XeLaTeX
和LuLaTeX
似乎已安装MiKTeX
,但我无法使用该\fontspec
包来使用 Arial Narrow。
答案1
(添加为答案,因为与评论不同,它允许我正确格式化我的代码)
尝试这个:
\documentclass{article}
\usepackage{blindtext}
\usepackage{fontspec}
% With LuaLaTeX, specifying the font by name uses the Italic variant, for some reason:
%\setmainfont{Arial Narrow}
% If using XeLaTeX is not an option, we need to specify the font by file name:
\setmainfont{ARIALN.TTF}
\begin{document}
\blindtext
\end{document}
这对我适用于 TeXLive 2022 / Windows 10。