How To Install texlive-powerdot on CentOS 7
Introduction
In this tutorial we learn how to install texlive-powerdot
on CentOS 7.
What is texlive-powerdot
Powerdot is a presentation class for LaTeX that allows for the quick and easy development of professional presentations. It comes with many tools that enhance presentations and aid the presenter. Examples are automatic overlays, personal notes and a handout mode. To view a presentation, DVI, PS or PDF output can be used. A powerful template system is available to easily develop new styles. A LyX layout file is provided. date
We can use yum
or dnf
to install texlive-powerdot
on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install texlive-powerdot.
Install texlive-powerdot 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-powerdot
using yum
by running the following command:
sudo yum -y install texlive-powerdot
Install texlive-powerdot 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-powerdot
using dnf
by running the following command:
sudo dnf -y install texlive-powerdot
How To Uninstall texlive-powerdot on CentOS 7
To uninstall only the texlive-powerdot
package we can use the following command:
sudo dnf remove texlive-powerdot
References
Summary
In this tutorial we learn how to install texlive-powerdot
on CentOS 7 using yum
and dnf
.