Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jamesplease/unicode-math.js
Unicode values for math symbols.
https://github.com/jamesplease/unicode-math.js
Last synced: 15 days ago
JSON representation
Unicode values for math symbols.
- Host: GitHub
- URL: https://github.com/jamesplease/unicode-math.js
- Owner: jamesplease
- License: mit
- Created: 2014-09-25T16:13:47.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-10-02T14:22:33.000Z (about 10 years ago)
- Last Synced: 2024-10-08T14:07:21.521Z (about 1 month ago)
- Language: JavaScript
- Size: 265 KB
- Stars: 7
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# unicode-math.js
Unicode values for LaTeX math symbols.
### Installation
Install via npm.
```js
npm install unicode-math
```### Basic Use
This library exports an object that contains each symbol.
```js
var unicodeMath = require('unicode-math');// Access values by its LaTeX symbol
unicodeMath['\\neg'];
```Each entry has three properties:
- `codePoint`: The unicode value as a number
- `type`: The type
- `description`: A short description### Credits
This library is a port of [unicode-math](https://github.com/wspr/unicode-math) by
[@wspr](https://github.com/wspr).