latexmlmath command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
latexmlmath: command not found
or when using sudo you get the following error message
sudo: latexmlmath: command not found
Solutions to latexmlmath: command not found
How To Fix latexmlmath: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu latexmlmath is provided by latexml package.
latexml is:
latexml is a program, written in Perl, that attempts to faithfully mimic TeX’s behaviour, but produces XML instead of dvi. The document model of the target XML makes explicit the model implied by LaTeX.
The processing and model are both extensible; you can define the mapping between TeX constructs and the XML fragments to be created. A postprocessor, latexmlpost converts this XML into other formats such as HTML or XHTML, with options to convert the math into MathML (currently only presentation) or images.
To fix this problem, we can install more using the command below.
sudo apt-get -y install latexml
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install latexml.
sudo apt -y install latexml
Or if you have aptitude installed you can use the following command.
sudo aptitude install latexml
Summary
In this tutorial we learn how to fix latexmlmath command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.