我尝试在 Overleaf 上安装 Font Awesome 6,但失败了。虽然 Font Awesome 5 以软件包形式提供,但版本 6 却不是。
我通过.otf
从以下位置下载文件手动安装了字体Font Awesome 网站并将它们上传到 Overleaf,并将我的文档的序言设置为如下所示(使用 XeLaTeX)
\documentclass{article}
\usepackage{fontspec}
\newfontfamily{\FA}{Font Awesome 6 Free-Regular-400.otf}
相当简单,只是现在我不知道如何引用我想要的特定图标。
我尝试根据其 Unicode 字符来引用它,如Font Awesome 图标搜索例如,为了尝试渲染房屋图标,我这样写
{\FA \char"f11b}
并得到错误
<to be read again>
f
l.7 {\FA \char"f
11b}
A number should have been here; I inserted `0'.
(If you can't figure out why I needed to see a number,
look up `weird error' in the index to The TeXbook.)
Missing character: There is no ^^@ (U+0000) in font [Font Awesome 6 Free-Regular-400.otf]/OT:script=latn;language=dflt;!
[1
是不是缺少了某些基本的东西?我应该用不同的方式写 unicode 字符吗?很遗憾没有看到适用于 LaTex 的 Font Awesome 6 包,我到处搜索却一无所获。
先感谢您!