小型大写字母不适用于非 LaTeX 字体

小型大写字母不适用于非 LaTeX 字体

我正在使用一种名为“Brandon Grotesque”的特殊字体(必须是那种)进行基于 Beamer 类的演示。

当尝试获取小写字母输出时,它不起作用。我正在使用 LuaLatex 作为编译器。

总的来说,我知道特定字体可能不包含小型大写字母,但在 Powerpoint 等应用中使用该字体时,小型大写字母可以正常工作。

梅威瑟:

\documentclass[12pt]{beamer}
\usepackage{xltxtra}

\setmainfont[BoldFont={Brandon Grotesque Bold},Renderer=Basic]{Brandon Grotesque}
\setsansfont{Brandon Grotesque}
\renewcommand{\familydefault}{\sfdefault}

\begin{document}

\begin{frame}[t]
Normal Output
\textsc{Small Caps}
\textbf{Bold Text}
\end{frame}

\end{document}

相关内容