Windows 7 上的 XeLaTeX 错误

Windows 7 上的 XeLaTeX 错误

我正在尝试使用 MiKTeX 2.9 在 Windows 7 中编译最小的 XeLaTeX 文档。我已更新所有已安装的 MikTeX 软件包,但在编译过程中仍然出现许多错误。

\documentclass[10pt]{article}

\usepackage{fontspec,lipsum}
\setmainfont[Ligatures=TeX]{Adobe Garamond Pro}

\listfiles

\begin{document}

\section{Introduction}

\lipsum[1]

\end{document}

在经历了许多错误后,我按下回车键得到了一个可以工作的文档,但它在 pdf 的开头有一些调试注释。见下文:

输出

以下是日志文件的第一个错误:

\l_fontspec_tmp_int=\count122
LaTeX Info: Redefining \itshape on input line 1893.
LaTeX Info: Redefining \slshape on input line 1897.
LaTeX Info: Redefining \scshape on input line 1901.
LaTeX Info: Redefining \upshape on input line 1905.

("C:\Program Files\MiKTeX 2.9\tex\latex\fontspec\fontspec.cfg"
! Undefined control sequence.
<argument> \c_keys_code_root_tl 
                                fontspec/Ligatures/Historical
l.8 ...tureoption{Ligatures}{Historic}{Historical}

? 
! Undefined control sequence.
<argument> \c_keys_code_root_tl 
                                fontspec/Ligatures/Historic
l.8 ...tureoption{Ligatures}{Historic}{Historical}

? 
))) (C:\Users\desktop\AppData\Roaming\MiKTeX\2.9\tex\latex\lipsum\lipsum.sty
Package: lipsum 2011/04/14 v1.2 150 paragraphs of Lorem Ipsum dummy text
\c@lips@count=\count123
)
Requested font "Adobe Garamond Pro" at 10.0pt
 -> C:/Windows/Fonts/AGaramondPro-Regular.otf
Requested font "Adobe Garamond Pro/ICU" at 10.0pt
 -> C:/Windows/Fonts/AGaramondPro-Regular.otf

! Undefined control sequence.
\fontspec_get_features:n ...st ,#1}\str_if_eq:xxF 
                                                  {\l_fontspec_hexcol_tl \l_...
l.4 ...mainfont[Ligatures=TeX]{Adobe Garamond Pro}

? 

! LaTeX Error: Missing \begin{document}.

See the LaTeX manual or LaTeX Companion for explanation.
Type  H <return>  for immediate help.
 ...                                              

完整的日志文件可以在这里找到:模板日志

使用任意数量的已安装系统字体,我都会得到相同的结果。我希望文档能够正确编译且不出现错误,并省略生成的 PDF 开头的额外信息。

相关内容