How To Install texlive-sectsty on AlmaLinux 8
Introduction
In this tutorial we learn how to install texlive-sectsty on AlmaLinux 8.
What is texlive-sectsty
A LaTeX2e package to help change the style of any or all of LaTeX’s sectional headers in the article, book, or report classes. Examples include the addition of rules above or below a section title.
We can use yum or dnf to install texlive-sectsty on AlmaLinux 8. In this tutorial we discuss both methods but you only need to choose one of method to install texlive-sectsty.
Install texlive-sectsty 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-sectsty using dnf by running the following command:
sudo dnf -y install texlive-sectsty
Install texlive-sectsty 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-sectsty using yum by running the following command:
sudo yum -y install texlive-sectsty
How To Uninstall texlive-sectsty on AlmaLinux 8
To uninstall only the texlive-sectsty package we can use the following command:
sudo dnf remove texlive-sectsty
References
Summary
In this tutorial we learn how to install texlive-sectsty on AlmaLinux 8 using yum and dnf.