How To Install texlive-framed on CentOS 8
Introduction
In this tutorial we learn how to install texlive-framed on CentOS 8.
What is texlive-framed
The package creates three environments ordinary frame box around the region, - shaded, which shades the region, and - leftbar, which places a line at the left side. The environments allow a break at their start (the \FrameCommand enables creation of a title that is “attached” to the environment); breaks are also allowed in the course of the framed/shaded matter. There is also a command \MakeFramed to make your own framed-style environments.
We can use yum or dnf to install texlive-framed on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install texlive-framed.
Install texlive-framed 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-framed using yum by running the following command:
sudo yum -y install texlive-framed
Install texlive-framed 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-framed using dnf by running the following command:
sudo dnf -y install texlive-framed
How To Uninstall texlive-framed on CentOS 8
To uninstall only the texlive-framed package we can use the following command:
sudo dnf remove texlive-framed
References
Summary
In this tutorial we learn how to install texlive-framed on CentOS 8 using yum and dnf.