Fontawesome 5 错误

Fontawesome 5 错误

我正在使用最新的fontawesomelatex 版本 5.9.0 软件包,但似乎并非所有图标都可以使用。在下面的 MWE 中,\faIcon{phone-alt}它表示未找到。

\documentclass{article}

\usepackage{fontawesome5}

\begin{document}
\faIcon{phone}
\faIcon{phone-alt}
\end{document}

我收到以下错误

fontawesome5 error: "icon-not-found" The requested icon phone-alt was not found. For immediate help type H <return>.

编辑 这是我的日志文件的最后一部分。

 *File List*
 article.cls    2014/09/29 v1.4h Standard LaTeX document class
  size10.clo    2014/09/29 v1.4h Standard LaTeX file (size option)
fontawesome5.sty    2019/03/20 v5.8.0 Font Awesome 5
   expl3.sty    2018-06-14 L3 programming layer (loader) 
expl3-code.tex    2018-06-14 L3 programming layer 
l3xdvipdfmx.def    
l3keys2e.sty    2018-05-12 LaTeX2e option processing using LaTeX3 keys
  xparse.sty    2018-05-12 L3 Experimental document command parser
fontawesome5-utex-helper.sty    2019/03/20 v5.8.0 uTeX helper for fontawesome5
tufontawesomefree.fd
tufontawesomebrands.fd
 ***********

我确实不是我使用 5.9.0 版本,正如我所想,但实际是 5.8.0。我更新了软件包,一切正常。

答案1

嗯,看来你懂不是使用 5.9 版本fontawesome5...

使用旧版本 5.8 我可以重现您的错误。更新我的 MiKTeX 后,我获得了新版本 5.9 fontawesome5.sty 2019/06/07 v5.9.0 Font Awesome 5:。

请运行以下 mwe(我添加了命令\listfiles来获取所有使用的软件包和版本号的列表)

\listfiles
\documentclass{article}

\usepackage{fontawesome5}

\begin{document}
\faIcon{phone} and 
\faPhone or 
\faPhone* or 
\faIcon{phone-alt}
\end{document}

并得到了以下使用的软件包列表(检查您的log文件。您应该在文件末尾找到该列表。您只需要此命令用于此测试目的!):

*File List*
 article.cls    2014/09/29 v1.4h Standard LaTeX document class
  size10.clo    2018/09/03 v1.4i Standard LaTeX file (size option)
fontawesome5.sty    2019/06/07 v5.9.0 Font Awesome 5
   expl3.sty    2019-05-28 L3 programming layer (loader) 
expl3-code.tex    2019-05-28 L3 programming layer 
l3pdfmode.def    2019-04-06 v L3 Experimental driver: PDF mode
l3keys2e.sty    2019-05-28 LaTeX2e option processing using LaTeX3 keys
  xparse.sty    2019-05-28 L3 Experimental document command parser
fontawesome5-generic-helper.sty    2019/06/07 v5.9.0 non-uTeX helper for fontawesome5
fontawesome5-mapping.def
ufontawesomefree0.fd
ufontawesomefree3.fd
 ***********

编译没有错误,并且有以下pdf:

生成的 pdf

请复制我的代码,在您的计算机上运行它,并检查日志文件中所使用的版本fontawesome5。如果它确实列出了版本 5.9,那么请将我的代码的完整日志文件添加到您的问题中……

相关内容