How To Install texlive-a4wide on CentOS 7
Introduction
In this tutorial we learn how to install texlive-a4wide
on CentOS 7.
What is texlive-a4wide
This package increases the width of the typeset area of an a4 page. This sort of operation is capable of producing typographically poor results; the operation itself is better provided by the geometry package. The package uses the a4 package.
We can use yum
or dnf
to install texlive-a4wide
on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install texlive-a4wide.
Install texlive-a4wide on CentOS 7 Using yum
Update yum database with yum
using the following command.
sudo yum makecache
After updating yum database, We can install texlive-a4wide
using yum
by running the following command:
sudo yum -y install texlive-a4wide
Install texlive-a4wide on CentOS 7 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-a4wide
using dnf
by running the following command:
sudo dnf -y install texlive-a4wide
How To Uninstall texlive-a4wide on CentOS 7
To uninstall only the texlive-a4wide
package we can use the following command:
sudo dnf remove texlive-a4wide
References
Summary
In this tutorial we learn how to install texlive-a4wide
on CentOS 7 using yum
and dnf
.