if / flajax
There is no license information available for the latest version (0.1.4) of this package.
MathJax extension for flarum
Package info
Language:JavaScript
Type:flarum-extension
pkg:composer/if/flajax
0.1.4
2021-06-03 08:16 UTC
Requires
- flarum/core: ^1.0
This package is not auto-updated.
Last update: 2026-05-01 07:53:10 UTC
README
Extension for flarum that allows you to write complex math formulas with LaTeX syntax.
- Install flarum plugin with:
composer require if/flajax
- Enable plugin in flarum admin panel
- Follow this rules when writing your math:
- Just enclose inline math formulas in single dollar signs
$ ... $ - or use double dollar signs for formulas in a separate line
$$
...
$$
- In order to enumerate equations use
$$
\begin{equation}
...
\label{eqEmc}
\end{equation}
$$
- This way one can reference to it by using Eq.
\ref{eqEmc}. Use {} with superscript:E=mc^{2}if you want proper superscripts handling by LaTeX.