为什么 $\XeLaTeX$ 上的小型大写字母的字距不正确?

为什么 $\XeLaTeX$ 上的小型大写字母的字距不正确?
  • 这是Adobe Garamond 专业版Adobe 官方规格表上显示的小型大写字母: 在此处输入图片描述

  • 这是我从 XeLaTeX 使用\setmainfont和获得的结果\textsc{}在此处输入图片描述


\documentclass{article}

\usepackage{fontspec}
\setmainfont[ItalicFont=AGaramondPro-Italic.otf,
BoldFont=AGaramondPro-Bold.otf,
BoldItalicFont=AGaramondPro-BoldItalic.otf,
Numbers=OldStyle]
{AGaramondPro-Regular.otf}

\begin{document}

\textsc{small capital} is not the same as SMALL CAPITALS scaled down,
 but either kerning or letter spacing is off.

\end{document}

字形的形状是正确的,即 XeLaTeX 知道在哪里以及如何找到真正的小型大写字母,而不是仅仅通过缩小常规大写字母来制作假的,但为什么字距这么不对???

相关内容