2013-06-01 07:17:25 +00:00
|
|
|
MathJax Addon
|
|
|
|
=============
|
|
|
|
|
|
|
|
* Author: Tobias Diekershoff
|
|
|
|
* License: [3-clause BSD](http://opensource.org/licenses/BSD-3-Clause) license
|
|
|
|
(see the LICENSE file in the addon directory)
|
|
|
|
|
|
|
|
About
|
|
|
|
-----
|
|
|
|
|
|
|
|
This addon for friendica includes the [MathJax][1] CDN to enable rendering of
|
|
|
|
[LaTeX][2] formulae in your friendica postings.
|
|
|
|
|
|
|
|
Configuration
|
|
|
|
-------------
|
2018-06-28 03:17:57 +00:00
|
|
|
All you need to do is provide Friendica with the base URL of MathJax. This can
|
2013-06-01 07:17:25 +00:00
|
|
|
be either the URL of the CDN of MathJax or your own installation.
|
|
|
|
|
|
|
|
In case you want to use the CDN you can try the following URL as a quick start
|
|
|
|
|
|
|
|
http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML
|
|
|
|
|
2018-06-28 03:17:57 +00:00
|
|
|
In case you don't want or can use the admin panel of Friendica you can activate
|
2018-11-25 07:14:18 +00:00
|
|
|
the addon by adding _mathjax_ to the list in your `config/local.config.php` file
|
2013-06-01 07:17:25 +00:00
|
|
|
|
2018-11-25 07:14:18 +00:00
|
|
|
'system' => [
|
|
|
|
...
|
|
|
|
'addon' => '...,mathjax'
|
|
|
|
...
|
|
|
|
]
|
2013-06-01 07:17:25 +00:00
|
|
|
|
2018-11-25 07:14:18 +00:00
|
|
|
and then providing the base URL after that in the `config/addon.config.php` file
|
2013-06-01 07:17:25 +00:00
|
|
|
|
2018-11-25 07:14:18 +00:00
|
|
|
'mathjax' => [
|
|
|
|
'baseurl' => '[the URL to your MathJax installation]',
|
|
|
|
],
|
2013-06-01 07:17:25 +00:00
|
|
|
|
|
|
|
Usage
|
|
|
|
=====
|
|
|
|
|
|
|
|
Once the addon is configured you can use LaTeX syntax in your postings to share
|
|
|
|
formulae with your contacts. But remember that the formulae are rendered in the
|
|
|
|
browser of the user thus your contacts need to activate this addon as well. If
|
|
|
|
they don't they will only see the LaTeX syntax in your texts.
|
|
|
|
|
|
|
|
Just enclose your equations in $$...$$ pairs like e.g. $$f_c(x)=ax+b$$.
|
|
|
|
|
|
|
|
[1]: http://www.mathjax.org/
|
|
|
|
[2]: https://en.wikipedia.org/wiki/LaTeX
|