答案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}