Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 572 Bytes

README.md

File metadata and controls

26 lines (21 loc) · 572 Bytes

React Native Latex

Build Status

This module includes a component to render LateX formulas in React Native App. This is based on the API to http://sciencesoft.at/

Installation


$ npm install --save react-native-latex

The solution is implemented in JavaScript so no native module linking is required.

Usage


import Latex from 'react-native-latex';

<Latex style={{
  width: '100%',
  height: 100
}}>
  {"\\frac{1}{2\\pi}\\int_{-\\infty}^{\\infty}e^{-\\frac{x^2}{2}}dx"}
</Latex>