Changes between Version 1 and Version 2 of TracMathJaxPlugin


Ignore:
Timestamp:
Dec 30, 2010, 10:05:07 PM (13 years ago)
Author:
Kamil Kisiel
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TracMathJaxPlugin

    v1 v2  
    66
    77A plugin for rendering math in Trac using [http://www.mathjax.org MathJax]. Unlike the TracMathPlugin, this plugin performs all rendering on the client side using web fonts.
     8
     9== Download and Source ==
     10
     11Download the 0.1 release in [https://bitbucket.org/kisielk/tracmathjaxplugin/get/0.1.zip zip], [https://bitbucket.org/kisielk/tracmathjaxplugin/get/0.1.tar.gz gz], or [https://bitbucket.org/kisielk/tracmathjaxplugin/get/0.1.tar.bz2 bz2] format.
     12
     13For the latest changes, check out the source [https://bitbucket.org/kisielk/tracmathplugin using Hg], or [https://bitbucket.org/kisielk/tracmathplugin/src browse it on Bitbucket].
     14
     15== Installation ==
     16
     17Unpack your download. Go to the top level directory of !TracMathJax and type:
     18{{{
     19 $ python setup.py bdist_egg
     20}}}
     21
     22This should create an egg file under the `dist` subdirectory of your current directory. Copy the egg to the `plugins` directory of your trac project. If you have any difficulties installing consult these [t:wiki:TracPlugins trac plugin installation steps].
     23
     24Next, download a copy of [http://www.mathjax.org MathJax] and install it on your server to a location readable by the web server.
     25
     26To activate the component, edit your project's `trac.ini` file to include:
     27{{{
     28 [components]
     29 tracmathjax.* = enabled
     30}}}
     31
     32Also create a new section called `[tracmathjax]` and configure the path to where you unpacked !MathJax:
     33{{{
     34[tracmathjax]
     35mathjax_path = /path/to/mathjax
     36}}}
     37
     38For additional customization of the display output, see the [http://www.mathjax.org/resources/docs/ MathJax documentation].
    839
    940== Bugs/Feature Requests ==
     
    1546[http://trac-hacks.org/newticket?component=TracMathJaxPlugin&owner=kisielk new ticket].
    1647
    17 == Download ==
    18 
    19 Download the zipped source from [download:tracmathjaxplugin here].
    20 
    21 == Source ==
    22 
    23 You can check out TracMathJaxPlugin from [http://trac-hacks.org/svn/tracmathjaxplugin here] using Subversion, or [source:tracmathjaxplugin browse the source] with Trac.
    24 
    2548== Example ==
    2649
     
    2851
    2952{{{
    30 Here is an equation: \( y = x^2 \)
     53Here is an inline equation: \( y = x^2 \)
    3154}}}
    3255
     
    4669}}}
    4770
    48 == Recent Changes ==
    49 
    50 [[ChangeLog(tracmathjaxplugin, 3)]]
     71== Release Notes ==
     72=== 0.1 ===
     73 * Initial release
    5174
    5275== Author/Contributors ==