starsriver / mathplus
Mathplus extension for flarum,more support.
Fund package maintenance!
include.uotan.cn/threads/13
Installs: 435
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 3
Language:JavaScript
Type:flarum-extension
Requires
- flarum/core: ^1.0
- dev-main
- 0.4.0
- 0.3.2
- 0.3.1
- 0.3.0
- 0.2.1
- 0.2.0
- 0.1.3
- 0.1.2
- 0.1.0
- dev-dependabot/npm_and_yarn/js/multi-d2d345bd68
- dev-dependabot/npm_and_yarn/js/ws-5.2.4
- dev-dependabot/npm_and_yarn/js/multi-2a514043db
- dev-dependabot/npm_and_yarn/js/babel/traverse-7.23.2
- dev-patch-6
- dev-patch-5
- dev-patch-4
- dev-patch-3
- dev-patch-2
- dev-patch-1
This package is auto-updated.
Last update: 2024-12-21 04:02:20 UTC
README
- Install flarum plugin with:
composer require starsriver/mathplus
- 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.