How To Install texlive-light-latex-make on Fedora 36
Introduction
In this tutorial we learn how to install texlive-light-latex-make
on Fedora 36.
What is texlive-light-latex-make
This program is yet another build tool specific for LaTeX documents. Its aim is to provide a simple way to specify a workflow of processing LaTeX documents and encourage people to always explicitly show the right workflow for each document. The main features of the executable llmk are all about the above purpose. First, you can describe the workflows either in an external file llmk.toml or in a LaTeX document source in the form of magic comments. Further, multiple magic comment formats can be used. Second, it is fully cross-platform. The only requirement of the program is the texlua command; llmk provides a uniform way to describe the workflows available for nearly all TeX environments. Third, it behaves exactly the same in any environment. At this point, llmk intentionally does not provide any method for user configuration. Therefore one can guarantee that for a LaTeX document with an llmk setup, the process of typesetting the document will be reproduced in any TeX environment with the program.
We can use yum
or dnf
to install texlive-light-latex-make
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install texlive-light-latex-make.
Install texlive-light-latex-make 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-light-latex-make
using dnf
by running the following command:
sudo dnf -y install texlive-light-latex-make
Install texlive-light-latex-make 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-light-latex-make
using yum
by running the following command:
sudo yum -y install texlive-light-latex-make
How To Uninstall texlive-light-latex-make on Fedora 36
To uninstall only the texlive-light-latex-make
package we can use the following command:
sudo dnf remove texlive-light-latex-make
texlive-light-latex-make Package Contents on Fedora 36
/usr/bin/llmk
/usr/share/man/man1/llmk.1.gz
/usr/share/texlive/texmf-dist/doc/support/light-latex-make
/usr/share/texlive/texmf-dist/doc/support/light-latex-make/LICENSE
/usr/share/texlive/texmf-dist/doc/support/light-latex-make/README.md
/usr/share/texlive/texmf-dist/doc/support/light-latex-make/llmk-doc.cls
/usr/share/texlive/texmf-dist/doc/support/light-latex-make/llmk-logo-code.tex
/usr/share/texlive/texmf-dist/doc/support/light-latex-make/llmk-logo.png
/usr/share/texlive/texmf-dist/doc/support/light-latex-make/llmk.pdf
/usr/share/texlive/texmf-dist/doc/support/light-latex-make/llmk.tex
/usr/share/texlive/texmf-dist/scripts/light-latex-make
/usr/share/texlive/texmf-dist/scripts/light-latex-make/llmk.lua
References
Summary
In this tutorial we learn how to install texlive-light-latex-make
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).