How To Install texlive-ted on Fedora 36

In this tutorial we learn how to install texlive-ted in Fedora 36. texlive-ted is A (primitive) token list editor

Introduction

In this tutorial we learn how to install texlive-ted on Fedora 36.

What is texlive-ted

Just like sed is a stream editor, ted is a token list editor. Actually, it is not as powerfull as sed, but its main feature is that it really works with tokens, not only characters. The ted package provides two user macros \ShowTokens. The first is maybe the most useful substitutions in token lists (even inside braces). The second displays each token of the list (one per line) with its catcode (in the list, not just the current one), and can be useful for debugging or for TeX learners. Ted is designed to work well even if strange tokens (that is, unusual {charcode, catcode} pairs or tokens with a confusing meaning) occur in the list.

We can use yum or dnf to install texlive-ted on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install texlive-ted.

Install texlive-ted 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-ted using dnf by running the following command:

sudo dnf -y install texlive-ted

Install texlive-ted 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-ted using yum by running the following command:

sudo yum -y install texlive-ted

How To Uninstall texlive-ted on Fedora 36

To uninstall only the texlive-ted package we can use the following command:

sudo dnf remove texlive-ted

texlive-ted Package Contents on Fedora 36

/usr/share/licenses/texlive-ted
/usr/share/licenses/texlive-ted/lppl1.txt
/usr/share/texlive/texmf-dist/tex/latex/ted
/usr/share/texlive/texmf-dist/tex/latex/ted/ted.sty

References

Summary

In this tutorial we learn how to install texlive-ted on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).