latex2react
v2.1.3
Published
Author interactive math equations and diagrams online using LaTeX and PSTricks
Downloads
12
Maintainers
Readme
LaTeX2React
installation
- Install the library!
yarn add latex2react
- import the
latex2js
CSS file, and theLaTeX
React component
import 'latex2js/latex2js.css';
import { LaTeX } from 'latex2react';
- Load your {\tt TeX} into the {\tt content} property. Enjoy!
const tex = String.raw`
\begin{center}
\begin{pspicture}(0,-3)(8,3)
...
\end{pspicture}
\end{center}
`;
class App extends Component {
render() {
return <LaTeX content={tex} />;
}
}