How To Install texlive-glossaries on CentOS 7
Introduction
In this tutorial we learn how to install texlive-glossaries
on CentOS 7.
What is texlive-glossaries
The glossaries package supports acronyms and multiple glossaries, and has provision for operation in several languages (using the facilities of either babel or polyglossia). New entries are defined to have a name and description (and optionally an associated symbol). Support for multiple languages is offered, and plural forms of terms may be specified. An additional package, glossaries-accsupp, can make use of the accsupp package mechanisms for accessibility support for PDF files containing glossaries. The user may define new glossary styles, and preambles and postambles can be specified. There is provision for loading a database of terms, but only terms used in the text will be added to the relevant glossary. The package uses an indexing program to provide the actual glossary; either makeindex or xindy may serve this purpose, and a Perl script is provided to serve as interface. The package distribution also provides the mfirstuc package, for changing the first letter of a word to upper case. The package supersedes the author’s glossary package (which is now obsolete), and a conversion tool is provided.
We can use yum
or dnf
to install texlive-glossaries
on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install texlive-glossaries.
Install texlive-glossaries 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-glossaries
using yum
by running the following command:
sudo yum -y install texlive-glossaries
Install texlive-glossaries 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-glossaries
using dnf
by running the following command:
sudo dnf -y install texlive-glossaries
How To Uninstall texlive-glossaries on CentOS 7
To uninstall only the texlive-glossaries
package we can use the following command:
sudo dnf remove texlive-glossaries
References
Summary
In this tutorial we learn how to install texlive-glossaries
on CentOS 7 using yum
and dnf
.