I have an old article in which I use fontawesome icons from version 4.7.
In Ubuntu 16.04, I had installed font-awesome (v4.5) and texlive-fonts-extra from the repositories. Then I downloaded the fontawesome 4.7 font from the fontawesome website, and placed the new FontAwesome.otf file at /usr/share/fonts/opentype/font-awesome
This allowed me to use icons in newer releases of fontawesome.
Now fontawesome5 has come up and everything is different, and I do not seem to be able to make it work.
So what would be the best practice to have fontawesome5 up and running?
Please assume I have no idea, walk me through how to install the fontawesome5 package and the fonts.
This is my old MWE:
\documentclass{article}
\usepackage{fontawesome}
\newfontfamily{\FA}{FontAwesome}
%1 - Install font-awesome and texlive-fonts-extra from the repositories
%2 - If you want to use the latest, download font awesome latest version from http://fortawesome.github.io/Font-Awesome/
%3 - Uncompress and copy the FontAwesome.otf file to the following location, replacing current file
%sudo cp FontAwesome.otf /usr/share/fonts/opentype/font-awesome/FontAwesome.otf
%4 - Call symbols newer than your previous version separately
\newcommand\faUserCircle{{\FA\symbol{"F2BD}}}
\newcommand\faIdCard{{\FA\symbol{"F2C2}}}
\begin{document}
some symbols:\\
\faEnvelope\\
\faSkype\\
new symbols:\\
\faUserCircle\\
\faIdCard\\
\end{document}
which produces:
I want to reproduce it with fontawesome5, including some icon that is new to that release.
I tried the following, but it gives me multiple errors, so I guess I did not install the package or fonts correctly.
\documentclass{article}
\usepackage{fontawesome5}
\begin{document}
some symbols:\\
\faEnvelope\\
\faSkype\\
new symbols:\\
\faUserCircle\\
\faIdCard\\
\end{document}

fontawesome5is not supported before TeXLive 2017. Even if you manually install the package, it probably fails becauseexpl3and LuaTeX are too old. Instead I recommmend installing a "vanilla" TeXLive to get current packages, see https://tex.stackexchange.com/questions/1092/how-to-install-vanilla-texlive-on-debian-or-ubuntu on how to do this.With TeXLive 2018,
– Marcel Krüger Jun 27 '18 at 18:18fontawesome5is available by default and your second example just works.File fontawesome5.sty not found... Is my system still making use of the old texlive installation (the one I installed from the repositories)? – DaniCee Jun 28 '18 at 05:52