How To Install texlive-varwidth on Rocky Linux 8
Introduction
In this tutorial we learn how to install texlive-varwidth
on Rocky Linux 8.
What is texlive-varwidth
The varwidth environment is superficially similar to minipage, but the specified width is just a maximum value – the box may get a narrower “natural” width.
We can use yum
or dnf
to install texlive-varwidth
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install texlive-varwidth.
Install texlive-varwidth on Rocky Linux 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install texlive-varwidth
using dnf
by running the following command:
sudo dnf -y install texlive-varwidth
Install texlive-varwidth on Rocky Linux 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install texlive-varwidth
using yum
by running the following command:
sudo yum -y install texlive-varwidth
How To Uninstall texlive-varwidth on Rocky Linux 8
To uninstall only the texlive-varwidth
package we can use the following command:
sudo dnf remove texlive-varwidth
texlive-varwidth Package Contents on Rocky Linux 8
/usr/share/licenses/texlive-varwidth
/usr/share/licenses/texlive-varwidth/lppl1.txt
/usr/share/texlive/texmf-dist/doc/latex/varwidth
/usr/share/texlive/texmf-dist/doc/latex/varwidth/miscdoc.sty
/usr/share/texlive/texmf-dist/doc/latex/varwidth/varwidth-doc.pdf
/usr/share/texlive/texmf-dist/doc/latex/varwidth/varwidth-doc.tex
/usr/share/texlive/texmf-dist/tex/latex/varwidth
/usr/share/texlive/texmf-dist/tex/latex/varwidth/varwidth.sty
References
Summary
In this tutorial we learn how to install texlive-varwidth
on Rocky Linux 8 using yum and dnf.