How To Install texlive-carlisle on CentOS 8
Introduction
In this tutorial we learn how to install texlive-carlisle
on CentOS 8.
What is texlive-carlisle
Many of David Carlisle’s more substantial packages stand on their own, or as part of the LaTeX tools set; this set contains have them; - Fix marks in 2-column output; - A method for combining the capabilities of longtable and tabularx; - A proforma for building personalised LaTeX formats; - A jiffy to suppress page numbers; - An environment for including Plain TeX in LaTeX documents; - A jiffy to remove counters from other counters’ reset lists; - A package to rescale fonts to arbitrary sizes; - A jiffy to create ‘slashed’ for physicists; and - An environment for including HTML in LaTeX documents.
We can use yum
or dnf
to install texlive-carlisle
on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install texlive-carlisle.
Install texlive-carlisle on CentOS 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
CentOS Linux 8 - AppStream 43 kB/s | 4.3 kB 00:00
CentOS Linux 8 - BaseOS 65 kB/s | 3.9 kB 00:00
CentOS Linux 8 - ContinuousRelease 43 kB/s | 3.0 kB 00:00
CentOS Linux 8 - Extras 23 kB/s | 1.5 kB 00:00
CentOS Linux 8 - FastTrack 40 kB/s | 3.0 kB 00:00
CentOS Linux 8 - HighAvailability 36 kB/s | 3.9 kB 00:00
CentOS Linux 8 - Plus 24 kB/s | 1.5 kB 00:00
CentOS Linux 8 - PowerTools 50 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64 13 kB/s | 9.2 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64 24 kB/s | 8.5 kB 00:00
Metadata cache created.
After updating yum database, We can install texlive-carlisle
using dnf
by running the following command:
sudo dnf -y install texlive-carlisle
Install texlive-carlisle on CentOS 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
CentOS Linux 8 - AppStream 43 kB/s | 4.3 kB 00:00
CentOS Linux 8 - BaseOS 65 kB/s | 3.9 kB 00:00
CentOS Linux 8 - ContinuousRelease 43 kB/s | 3.0 kB 00:00
CentOS Linux 8 - Extras 23 kB/s | 1.5 kB 00:00
CentOS Linux 8 - FastTrack 40 kB/s | 3.0 kB 00:00
CentOS Linux 8 - HighAvailability 36 kB/s | 3.9 kB 00:00
CentOS Linux 8 - Plus 24 kB/s | 1.5 kB 00:00
CentOS Linux 8 - PowerTools 50 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64 13 kB/s | 9.2 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64 24 kB/s | 8.5 kB 00:00
Metadata cache created.
After updating yum database, We can install texlive-carlisle
using yum
by running the following command:
sudo yum -y install texlive-carlisle
How To Uninstall texlive-carlisle on CentOS 8
To uninstall only the texlive-carlisle
package we can use the following command:
sudo dnf remove texlive-carlisle
texlive-carlisle Package Contents on CentOS 8
/usr/share/licenses/texlive-carlisle
/usr/share/licenses/texlive-carlisle/lppl1.txt
/usr/share/texlive/texmf-dist/doc/latex/carlisle
/usr/share/texlive/texmf-dist/doc/latex/carlisle/README
/usr/share/texlive/texmf-dist/doc/latex/carlisle/ltx1.tex
/usr/share/texlive/texmf-dist/doc/latex/carlisle/ltxtable.pdf
/usr/share/texlive/texmf-dist/tex/latex/carlisle
/usr/share/texlive/texmf-dist/tex/latex/carlisle/dotlessj.sty
/usr/share/texlive/texmf-dist/tex/latex/carlisle/ltxtable.sty
/usr/share/texlive/texmf-dist/tex/latex/carlisle/mylatex.ltx
/usr/share/texlive/texmf-dist/tex/latex/carlisle/plain.sty
/usr/share/texlive/texmf-dist/tex/latex/carlisle/remreset.sty
/usr/share/texlive/texmf-dist/tex/latex/carlisle/scalefnt.sty
/usr/share/texlive/texmf-dist/tex/latex/carlisle/slashed.sty
References
Summary
In this tutorial we learn how to install texlive-carlisle
on CentOS 8 using yum and dnf.