如何在 LaTeX 文档中使用 fontspec 包?

如何在 LaTeX 文档中使用 fontspec 包?

我正在尝试制作一个使用该fontspec包的简单文档

  1. Tex Maker 4.4.1LuaLaTeX引擎。

我正在使用的代码

    \documentclass{article}

    \usepackage{fontspec}
    \setmainfont{Arial}
    \begin{document}

    \section*{Introduction}
    This is Introduction

    \end{document}

我收到此错误消息(尽管我已检查下拉菜单中是否设置了 LuaLaTeX 引擎)

特克斯制造商

fontspec 包需要 XeTeX 或 LuaTeX 才能运行。

您必须将排版引擎更改为“xelatex”或“lualatex”,而不是普通的“latex”或“pdflatex”。

答案1

我重新安装了软件,问题解决了。

相关内容