Fontspec + Cabin + LuaLaTeX

Fontspec + Cabin + LuaLaTeX

我想使用Cabin字体(可在 CTAN 上使用)。似乎可以使用这些字体LuaLaTeX,因为有type1可用的字体,并且在 CTAN 上显示:

LuaLaTeX 和 xeLaTeX 用户可能更喜欢 type1 字体或者希望避免使用 fontspec,他们可以使用 type1 选项。

不过,我正在使用fontspec,所以现在我很困惑。

LuaLaTex我如何才能让这些字体与+一起使用fontespec

答案1

对于特殊的页脚字体,我想你会想fontspec直接使用。我不确定你的实际文档是什么样子,但fancyhdr在这种情况下你可以使用:

\documentclass[12pt]{article}
\usepackage{fontspec}
\setmainfont{georgia}
\newfontfamily\footerfont{Cabin}% default: Cabin-Regular

\usepackage{fancyhdr}
\fancyfoot{}
\fancyfoot[CO,CE]{\footerfont just a small footer}
\fancyfoot[RO,RE]{this is not in Cabin}
\pagestyle{fancy}

\begin{document}

This is not the footer and it's not in Cabin.

\end{document}

相关内容