我在更新一些详细信息后重新编辑了我的简历。我使用了一些图标,这些图标以前可以正常使用,但现在却无法显示了。
我没有收到任何警告或错误。我提供了以下代码的简化版本,该版本也可以编译,不会出现任何错误或警告,但也不会显示图标:
\documentclass{article}
\usepackage{fontawesome}
\begin{document}
\faLinkedin
hello
\end{document}
有人可以帮忙吗?
答案1
如果使用编译,XeLaTeX
则fontspec
必须包含包。现代 cv 简历中使用此方法的示例:
% !TeX TS-program = xelatex
\documentclass[11pt,a4paper,sans]{moderncv}
\moderncvstyle{classic}
\moderncvcolor{blue}
\usepackage[scale=0.75]{geometry}
\usepackage{fontawesome}
\usepackage{fontspec}
\usepackage{tikz}
\name{John}{Doe}
\title{Resum\`e title}
\phone[mobile]{+1~(234)~567~890}
\phone[fixed]{+2~(345)~678~901}
\phone[fax]{+3~(456)~789~012}
\email{[email protected]}
\homepage{www.johndoe.com}
\social[linkedin]{john.doe}
\social[twitter]{jdoe}
\social[github]{jdoe}
\moderncvicons{awesome}
\begin{document}
\makecvtitle
\faLinkedin \, hello
or
\faLinkedinSign \, hello
\faTwitter
\end{document}
答案2
我不知道为什么,但我只能使用 pdfLatex 通过在 Tikz 节点内写入 \faicon 来打印 fontawesome!
\tikz \node[scale=2] at (0,0) {\faBalanceScale};