How To Install texlive-ucharclasses on AlmaLinux 8
Introduction
In this tutorial we learn how to install texlive-ucharclasses
on AlmaLinux 8.
What is texlive-ucharclasses
The package takes care of switching fonts when you switch from one Unicode block to another in the text of a document. This way, you can write a document with no explicit font selection, but a series of rules of the form “when entering block …, switch font to use …”.
We can use yum
or dnf
to install texlive-ucharclasses
on AlmaLinux 8. In this tutorial we discuss both methods but you only need to choose one of method to install texlive-ucharclasses.
Install texlive-ucharclasses on AlmaLinux 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install texlive-ucharclasses
using dnf
by running the following command:
sudo dnf -y install texlive-ucharclasses
Install texlive-ucharclasses on AlmaLinux 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install texlive-ucharclasses
using yum
by running the following command:
sudo yum -y install texlive-ucharclasses
How To Uninstall texlive-ucharclasses on AlmaLinux 8
To uninstall only the texlive-ucharclasses
package we can use the following command:
sudo dnf remove texlive-ucharclasses
References
Summary
In this tutorial we learn how to install texlive-ucharclasses
on AlmaLinux 8 using yum and dnf.