How To Install chaksem on Debian 9
Introduction
In this tutorial we learn how to install chaksem
on Debian 9.
What is chaksem
chaksem is:
chaksem is a LaTeX2e class for slides. Based on seminar, it adds support for running footers as well as itemised and numbered lists, with a layout that fits nicely to the sans serif font used for text. There is support for overlays, which includes the ability to accumulate text and images on the slides for online presentations. Printable lecture notes with collapsed overlays are also able to be generated from this class.
There are three methods to install chaksem
on Debian 9. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install chaksem Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install chaksem
using apt-get
by running the following command:
sudo apt-get -y install chaksem
Install chaksem Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install chaksem
using apt
by running the following command:
sudo apt -y install chaksem
Install chaksem Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install chaksem
using aptitude
by running the following command:
sudo aptitude -y install chaksem
How To Uninstall chaksem on Debian 9
To uninstall only the chaksem
package we can use the following command:
sudo apt-get remove chaksem
Uninstall chaksem And Its Dependencies
To uninstall chaksem
and its dependencies that are no longer needed by Debian 9, we can use the command below:
sudo apt-get -y autoremove chaksem
Remove chaksem Configurations and Data
To remove chaksem
configuration and data from Debian 9 we can use the following command:
sudo apt-get -y purge chaksem
Remove chaksem configuration, data, and all of its dependencies
We can use the following command to remove chaksem
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge chaksem
Dependencies
chaksem have the following dependencies:
References
Summary
In this tutorial we learn how to install chaksem
package on Debian 9 using different package management tools: apt
, apt-get
and aptitude
.