我正在尝试使用巴斯克瓦德克斯XeLaTeX 中的字体;但是它的字距调整不正确。使用 LaTeX 时,它可以正常工作。
加载 Baskervaldx 字体的正确方法是什么?
使用 LaTeX,默认安装在 Linux 上
\documentclass[12pt]{article}
\usepackage{Baskervaldx}
\begin{document}
\textsc{Hello} World
Top
\end{document}
使用 XeTeX,将 otf 文件复制到 ~/.fonts
\documentclass[12pt]{article}
\usepackage{fontspec}
\setmainfont[Mapping=tex-text]{Baskervaldx}
\begin{document}
\textsc{Hello} World
Top
\end{document}