
Beamer クラスに基づくプレゼンテーションに、「Brandon Grotesque」という特別なフォント (まさにこのフォントである必要があります) を使用しています。
小文字大文字の出力を取得しようとすると、機能しません。コンパイラとして LuaLatex を使用しています。
一般的に、特定のフォントにスモールキャップが含まれていない可能性があることは承知していますが、たとえば PowerPoint でフォントを使用する場合、スモールキャップは機能します。
MWE:
\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}