次の最小限の例を考えてみましょう。
% !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
)。