Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jamesplease/latex-to-unicode.js

Convert LaTeX strings to unicode.
https://github.com/jamesplease/latex-to-unicode.js

Last synced: about 2 months ago
JSON representation

Convert LaTeX strings to unicode.

Awesome Lists containing this project

README

        

# latex-to-unicode.js

Convert LaTeX strings to unicode.

### Installing

Install via `npm`.

```sh
npm install latex-to-unicode
```

### Usage

```js
var latexToUnicode = require('latex-to-unicode');

latexToUnicode('\\frak{A} + \\alpha = 3');
// > 𝔄 + α = 3
```

### Credits

This is a Node port of [latex-to-unicode](https://github.com/ypsu/latex-to-unicode)
by [@ypsu](https://github.com/ypsu).