考虑以下最小示例:
% !TEX program = xelatex
\documentclass{article}
\usepackage{fontawesome}
\begin{document}
\faTwitter{} Some Text \faLinkedin
\end{document}
在我的 MacTeX 2016 基本系统(最新)上,PDF 中缺少图标,并且我收到以下错误消息:
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!
/usr/local/texlive/2016basic/texmf-dist/tex/latex/fontawesome/fontawesome.sty:45: fontspec error: "font-not-found"
!
! The font "FontAwesome" cannot be found.
!
! See the fontspec documentation for further information.
!
! For immediate help type H <return>.
!...............................................
当我将引擎更改为
% !TEX program = latex
或者
% !TEX program = luatex
我的系统上没有安装该字体,因为根据文档,该包应该使用与该包捆绑在一起的字体(显然可以与 和 一起使用latex
,luatex
但不能与 一起使用xelatex
)。