다음과 같은 최소한의 예를 고려하십시오.
% !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
).