UNPKG

latex-symbols-list

Version:
28 lines (18 loc) 450 B
# LaTeX Symbols List A list of LaTeX + AMS symbols. ### Installation Install via npm. ```sh npm install latex-symbols-list ``` ### Usage Access an array of every symbol by requiring in the package. ```js // Every LaTeX symbol var latexSymbols = require('latex-symbols-list'); ``` Use the data files themselves to access a subset of the symbols. ```js // Just the AMS arrows var amsArrows = require('latex-symbols-list/data/ams-arrows'); ```