From e70b3d9ecd19fc2ee159abd3546fa4bbd4fa7392 Mon Sep 17 00:00:00 2001 From: Jason Rogena Date: Sun, 13 Oct 2019 17:29:31 +0300 Subject: [PATCH] Add texlive-fontsextra to Archlinux prerequisites Add texlive-fontsextra to the list of installed packages on Archlinux. I get the following error if the package is not installed when I try to build the PDF using "make": LaTeX Error: File `fontawesome.sty' not found. Tested using the archlinux/base:latest Docker image. The command I ran before building the PDF is: pacman -Sy texlive-core texlive-latexextra make Then tried build the PDF by running: make clean make After I got the error above, I installed texlive-fontsextra using: pacman -Sy texlive-fontsextra Then tried to build again. The build worked OK the second time. The generated PDF also had the right fontawesome icons. Before installing texlive-fontsextra, I had tried just installing the fontawesome package using: pacman -Sy ttf-font-awesome I, however, got the same error when I tried to build the PDF after. Signed-off-by: Jason Rogena --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b49b808..db5c21f 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Depending on your GNU/Linux distribution the package names may be different. Bas __On Arch Linux:__ - $ sudo pacman -Sy texlive-core texlive-latexextra + $ sudo pacman -Sy texlive-core texlive-latexextra texlive-fontsextra __On Fedora:__