1<?php
2/**
3 * MathMulti plugin: Default Options
4 *
5 * For help with the configuration see http://www.splitbrain.org/dokuwiki/plugin:math
6 *
7 * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
8 * @author     Stephane Chamberland <stephane.chamberland@ec.gc.ca>
9 */
10 $conf['mathmulti_iscgi'] = 0; // 1=eqn images are produced by cgi every time the page is viewed
11 $conf['mathmulti_mimetex'] = ""; //Path to mimetex bin (produce img)
12 $conf['mathmulti_itex2mml'] = ""; //Path to itex2mml bin (produce mathml)
13 $conf['mathmulti_plain2mml'] = ""; //Path to plain2mml bin (produce mathml)
14 $conf['mathmulti_format'] = "img"; //default mathmulti rendering format
15 $conf['mathmulti_idiom'] = "tex"; //default mathmulti math idiom (dialect)
16 $conf['mathmulti_size'] = "12"; //default mathmulti math char size [points]
17
18
19