How To Install texlive-euenc on CentOS 8
Introduction
In this tutorial we learn how to install texlive-euenc
on CentOS 8.
What is texlive-euenc
Font encoding definitions for unicode fonts loaded by LaTeX in XeTeX or LuaTeX. The package provides two encodings designed for use with XeTeX, which the fontspec uses for unicode fonts which require no macro-level processing for accents, and – EU2, which provides the same facilities for use with LuaTeX. Neither encoding places any restriction on the glyphs provided by a font; use of EU2 causes the package euxunicode to be loaded (the package is part of this distribution). The package includes font definition files for use with the Latin Modern OpenType fonts.
We can use yum
or dnf
to install texlive-euenc
on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install texlive-euenc.
Install texlive-euenc 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-euenc
using dnf
by running the following command:
sudo dnf -y install texlive-euenc
Install texlive-euenc 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-euenc
using yum
by running the following command:
sudo yum -y install texlive-euenc
How To Uninstall texlive-euenc on CentOS 8
To uninstall only the texlive-euenc
package we can use the following command:
sudo dnf remove texlive-euenc
texlive-euenc Package Contents on CentOS 8
/usr/share/licenses/texlive-euenc
/usr/share/licenses/texlive-euenc/lppl1.3.txt
/usr/share/texlive/texmf-dist/doc/latex/euenc
/usr/share/texlive/texmf-dist/doc/latex/euenc/README
/usr/share/texlive/texmf-dist/doc/latex/euenc/euenc.pdf
/usr/share/texlive/texmf-dist/doc/latex/euenc/test-euxlm.ltx
/usr/share/texlive/texmf-dist/tex/latex/euenc
/usr/share/texlive/texmf-dist/tex/latex/euenc/eu1enc.def
/usr/share/texlive/texmf-dist/tex/latex/euenc/eu1lmdh.fd
/usr/share/texlive/texmf-dist/tex/latex/euenc/eu1lmr.fd
/usr/share/texlive/texmf-dist/tex/latex/euenc/eu1lmss.fd
/usr/share/texlive/texmf-dist/tex/latex/euenc/eu1lmssq.fd
/usr/share/texlive/texmf-dist/tex/latex/euenc/eu1lmtt.fd
/usr/share/texlive/texmf-dist/tex/latex/euenc/eu1lmvtt.fd
/usr/share/texlive/texmf-dist/tex/latex/euenc/eu2enc.def
/usr/share/texlive/texmf-dist/tex/latex/euenc/eu2lmdh.fd
/usr/share/texlive/texmf-dist/tex/latex/euenc/eu2lmr.fd
/usr/share/texlive/texmf-dist/tex/latex/euenc/eu2lmss.fd
/usr/share/texlive/texmf-dist/tex/latex/euenc/eu2lmssq.fd
/usr/share/texlive/texmf-dist/tex/latex/euenc/eu2lmtt.fd
/usr/share/texlive/texmf-dist/tex/latex/euenc/eu2lmvtt.fd
References
Summary
In this tutorial we learn how to install texlive-euenc
on CentOS 8 using yum and dnf.