1.0.1 • Published 8 months ago
latex-math-converter v1.0.1
LaTeX Math Converter
Overview
LaTeX Math Converter is a tool designed to convert mathematical expressions written in LaTeX into other formats. It aims to simplify the process of integrating LaTeX math into various applications like mathjs.
Usage
Provide instructions on how to use this package in a project. soon
Start With
import createLatexConverter from "latex-math-converter";
Example usage
const converter = createLatexConverter();
let operation1 = "\\frac{a}{b}";
let operation2 = "a+b";
console.log(converter.convert(operation1)); // => (a)/(b)
console.log(converter.convert(operation2, { addSpacing: true })); // => a + b