How To Install texlive-xetex on CentOS 8
Introduction
In this tutorial we learn how to install texlive-xetex on CentOS 8.
What is texlive-xetex
XeTeX is an extension of TeX that integrates TeX’s typesetting capabilities with (a) the Unicode text encoding standard (supporting most of the world’s scripts) and (b) modern font technologies (TrueType and OpenType) and text layout services (AAT, OpenType layout, SIL Graphite) provided by the host operating system and available libraries. With XeTeX, the advanced typographic features provided by OpenType fonts become available for all TeX users, as well as support for complex non-roman scripts. XeTeX also eliminates the complex task of managing a TeX font installation. XeTeX is now part of the standard TeX distribution TeXLive and works well with TeX macro packages like LaTeX and ConTeXt.
We can use yum or dnf to install texlive-xetex on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install texlive-xetex.
Install texlive-xetex on CentOS 8 Using yum
Update yum database with yum using the following command.
sudo yum makecache
After updating yum database, We can install texlive-xetex using yum by running the following command:
sudo yum -y install texlive-xetex
Install texlive-xetex on CentOS 8 Using dnf
If you don’t have dnf installed you can install DNF on CentOS 7 first.
Update yum database with dnf using the following command.
sudo dnf makecache
After updating yum database, We can install texlive-xetex using dnf by running the following command:
sudo dnf -y install texlive-xetex
How To Uninstall texlive-xetex on CentOS 8
To uninstall only the texlive-xetex package we can use the following command:
sudo dnf remove texlive-xetex
References
Summary
In this tutorial we learn how to install texlive-xetex on CentOS 8 using yum and dnf.