How To Install texlive-ltxkeys on Fedora 36
Introduction
In this tutorial we learn how to install texlive-ltxkeys
on Fedora 36.
What is texlive-ltxkeys
The package provides facilities for creating and managing keys in the sense of the keyval and xkeyval packages, but it is intended to be more robust and faster. Its robustness comes from its ability to preserve braces in key values throughout parsing. The need to preserve braces in key values arises often in parsing keys (for example, in the xwatermark package). The package is faster than xkeyval package because (among other things) it avoids character-wise parsing of key values (called “selective sanitization” by the xkeyval package). The package also provides functions for defining and managing keys.
We can use yum
or dnf
to install texlive-ltxkeys
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install texlive-ltxkeys.
Install texlive-ltxkeys on Fedora 36 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install texlive-ltxkeys
using dnf
by running the following command:
sudo dnf -y install texlive-ltxkeys
Install texlive-ltxkeys on Fedora 36 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install texlive-ltxkeys
using yum
by running the following command:
sudo yum -y install texlive-ltxkeys
How To Uninstall texlive-ltxkeys on Fedora 36
To uninstall only the texlive-ltxkeys
package we can use the following command:
sudo dnf remove texlive-ltxkeys
texlive-ltxkeys Package Contents on Fedora 36
/usr/share/licenses/texlive-ltxkeys
/usr/share/licenses/texlive-ltxkeys/lppl1.txt
/usr/share/texlive/texmf-dist/tex/latex/ltxkeys
/usr/share/texlive/texmf-dist/tex/latex/ltxkeys/ltxkeys.sty
References
Summary
In this tutorial we learn how to install texlive-ltxkeys
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).