MediaWiki Extension Math: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 5: | Line 5: | ||
=Installation= | =Installation= | ||
* Go to https://www.mediawiki.org/wiki/Extension:Math and download the latest version. | |||
* Extract the file (names similarly to Math-REL1_30-e13d2d5.tar.gz) in /var/www/mediawiki-1.26.2/extensions: | |||
cd /var/www/mediawiki-1.26.2/extensions | |||
gunzip < .../Math-REL1_30-e13d2d5.tar.gz | tar xfv - | |||
Modify /var/www/mediawiki-1.26.2/LocalSettings.php: | |||
wfLoadExtension( 'Math' ); | |||
Run update.php: | |||
cd /var/www/mediawiki-1.26.2/maintenance | |||
php update.php | |||
At this point the Math extension should be installed, but we also need to set math output modes in LocalSettings.php: | |||
// Set MathML as default rendering option | |||
$wgDefaultUserOptions['math'] = 'mathml'; | |||
$wgMathFullRestbaseURL= 'https://api.formulasearchengine.com/'; | |||
<font color=red>'''TODO''': did not work.</font> | |||
https://kb.novaordis.com/index.php/Special:MathStatus |
Revision as of 07:00, 7 December 2020
External
Internal
Installation
- Go to https://www.mediawiki.org/wiki/Extension:Math and download the latest version.
- Extract the file (names similarly to Math-REL1_30-e13d2d5.tar.gz) in /var/www/mediawiki-1.26.2/extensions:
cd /var/www/mediawiki-1.26.2/extensions gunzip < .../Math-REL1_30-e13d2d5.tar.gz | tar xfv -
Modify /var/www/mediawiki-1.26.2/LocalSettings.php:
wfLoadExtension( 'Math' );
Run update.php:
cd /var/www/mediawiki-1.26.2/maintenance php update.php
At this point the Math extension should be installed, but we also need to set math output modes in LocalSettings.php:
// Set MathML as default rendering option $wgDefaultUserOptions['math'] = 'mathml'; $wgMathFullRestbaseURL= 'https://api.formulasearchengine.com/';
TODO: did not work.
https://kb.novaordis.com/index.php/Special:MathStatus