How To Install texlive-fpl on CentOS 8
Introduction
In this tutorial we learn how to install texlive-fpl
on CentOS 8.
What is texlive-fpl
The FPL Fonts provide a set of SC/OsF fonts for URW Palladio L which are compatible with respect to metrics with the Palatino SC/OsF fonts from Adobe. Note that it is not my aim to exactly reproduce the outlines of the original Adobe fonts. The SC and OsF in the FPL Fonts were designed with the glyphs from URW Palladio L as starting point. For some glyphs (e.g. ‘o’) I got the best result by scaling and boldening. For others (e.g. ‘h’) shifting selected portions of the character gave more satisfying results. All this was done using the free font editor FontForge. The kerning data in these fonts comes from Walter Schmidt’s improved Palatino metrics. LaTeX use is enabled by the mathpazo package, which is part of the psnfss distribution.
We can use yum
or dnf
to install texlive-fpl
on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install texlive-fpl.
Install texlive-fpl on CentOS 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
CentOS Linux 8 - AppStream 43 kB/s | 4.3 kB 00:00
CentOS Linux 8 - BaseOS 65 kB/s | 3.9 kB 00:00
CentOS Linux 8 - ContinuousRelease 43 kB/s | 3.0 kB 00:00
CentOS Linux 8 - Extras 23 kB/s | 1.5 kB 00:00
CentOS Linux 8 - FastTrack 40 kB/s | 3.0 kB 00:00
CentOS Linux 8 - HighAvailability 36 kB/s | 3.9 kB 00:00
CentOS Linux 8 - Plus 24 kB/s | 1.5 kB 00:00
CentOS Linux 8 - PowerTools 50 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64 13 kB/s | 9.2 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64 24 kB/s | 8.5 kB 00:00
Metadata cache created.
After updating yum database, We can install texlive-fpl
using dnf
by running the following command:
sudo dnf -y install texlive-fpl
Install texlive-fpl on CentOS 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
CentOS Linux 8 - AppStream 43 kB/s | 4.3 kB 00:00
CentOS Linux 8 - BaseOS 65 kB/s | 3.9 kB 00:00
CentOS Linux 8 - ContinuousRelease 43 kB/s | 3.0 kB 00:00
CentOS Linux 8 - Extras 23 kB/s | 1.5 kB 00:00
CentOS Linux 8 - FastTrack 40 kB/s | 3.0 kB 00:00
CentOS Linux 8 - HighAvailability 36 kB/s | 3.9 kB 00:00
CentOS Linux 8 - Plus 24 kB/s | 1.5 kB 00:00
CentOS Linux 8 - PowerTools 50 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64 13 kB/s | 9.2 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64 24 kB/s | 8.5 kB 00:00
Metadata cache created.
After updating yum database, We can install texlive-fpl
using yum
by running the following command:
sudo yum -y install texlive-fpl
How To Uninstall texlive-fpl on CentOS 8
To uninstall only the texlive-fpl
package we can use the following command:
sudo dnf remove texlive-fpl
texlive-fpl Package Contents on CentOS 8
/usr/share/licenses/texlive-fpl
/usr/share/licenses/texlive-fpl/gpl.txt
/usr/share/texlive/texmf-dist/doc/fonts/fpl
/usr/share/texlive/texmf-dist/doc/fonts/fpl/COPYING
/usr/share/texlive/texmf-dist/doc/fonts/fpl/README
/usr/share/texlive/texmf-dist/fonts/afm/public/fpl
/usr/share/texlive/texmf-dist/fonts/afm/public/fpl/fplbij8a.afm
/usr/share/texlive/texmf-dist/fonts/afm/public/fpl/fplbj8a.afm
/usr/share/texlive/texmf-dist/fonts/afm/public/fpl/fplrc8a.afm
/usr/share/texlive/texmf-dist/fonts/afm/public/fpl/fplrij8a.afm
/usr/share/texlive/texmf-dist/fonts/afm/public/fpl/pplb9d-kern.afm
/usr/share/texlive/texmf-dist/fonts/afm/public/fpl/pplbi9d-kern.afm
/usr/share/texlive/texmf-dist/fonts/afm/public/fpl/pplrc9d-kern.afm
/usr/share/texlive/texmf-dist/fonts/afm/public/fpl/pplri9d-kern.afm
/usr/share/texlive/texmf-dist/fonts/type1/public/fpl
/usr/share/texlive/texmf-dist/fonts/type1/public/fpl/fplbij8a.pfb
/usr/share/texlive/texmf-dist/fonts/type1/public/fpl/fplbij8a.pfm
/usr/share/texlive/texmf-dist/fonts/type1/public/fpl/fplbj8a.pfb
/usr/share/texlive/texmf-dist/fonts/type1/public/fpl/fplbj8a.pfm
/usr/share/texlive/texmf-dist/fonts/type1/public/fpl/fplrc8a.pfb
/usr/share/texlive/texmf-dist/fonts/type1/public/fpl/fplrc8a.pfm
/usr/share/texlive/texmf-dist/fonts/type1/public/fpl/fplrij8a.pfb
/usr/share/texlive/texmf-dist/fonts/type1/public/fpl/fplrij8a.pfm
References
Summary
In this tutorial we learn how to install texlive-fpl
on CentOS 8 using yum and dnf.