Junicode 和小型大写字母

Junicode 和小型大写字母

如何在 LuaLaTeX 中使用 Junicode 小型大写字体?解决方案发布于 textls 使用 luatex 打破小写字母 没有用或者我无法修复它。

例子:

\defaultfontfeatures{Ligatures=TeX}
\setmainfont[SmallCapsFont={Junicode},SmallCapsFeatures={Letters=SmallCaps}]{Jun‌​icode}
\newfontfamily\scfont[Letters=SmallCaps]{Junicode}

答案1

简单来说有什么问题:

\documentclass{article}

\usepackage{fontspec}
\defaultfontfeatures{Ligatures=TeX}
\setmainfont{Junicode}

\begin{document}
The quick brown {\scshape smallcaps} jumps over the \emph{italic} fox.
\end{document}

这使:

在此处输入图片描述

相关内容