I am using a fantastic template to try and generate a CV. I have installed Tex Live 2016 this morning.
When I try and compile the cv.tex document, I am prompted with the following error:
"fontspec error: "font-not-found" The font FontAwesome cannot be found...."
on Line 164. The document successfully compiles with the Educations, Skills, Experience sections but does not include the heading (persons name and contact details).
Following this link, I tried to place the relevant .ttf files in my local directory, using
~texmf\tex\xelatex\fonts\truetype\awesomefont
But this has not helped.
A contributor to the github document informed me that the fontawesome package is installed with a default TeX Live installation. As said here. He then suggested I compile the following example
\documentclass{article}
\usepackage{fontspec}
\RequirePackage{fontawesome}
\begin{document}
\faCodeFork
\end{document}
For which I generate a blank document. So where must I place the .sty or .ttf files so the document can be successfully compiled?
kpsewhichalso doesn't fontspec use the font cache to look for fonts? Thus that has to be updated. – daleif Apr 02 '17 at 11:18~/texmffolder? (to make xelatex ignore it). – daleif Apr 02 '17 at 11:22fontawesomeas a system font? xelatex can use them. – Bernard Apr 02 '17 at 12:30