1<?php
2/**
3 * Default settings for the LaTeX plugin
4 *
5 * Primary Author: Wizardry and Steamworks <wizardry.steamworks@outlook.com>
6 * Original Authors: Mark Lundeberg, Alexander Kraus, Michael Boyle
7 * @license GPL 2
8 */
9
10$conf['latex_path']      = 'latex';
11$conf['dvips_path']      = 'dvips';
12$conf['convert_path']    = 'convert';
13$conf['convert_options'] = '-density 120 -trim -transparent "#FFFFFF"';
14$conf['identify_path']   = 'identify';
15$conf['image_format']    = 'png';
16$conf['latex_namespace'] = 'wiki:latexwas';
17
18$conf['xsize_limit']         = 1000;
19$conf['ysize_limit']         = 500;
20$conf['string_length_limit'] = 2000;
21
22$conf['preamble'] = '\documentclass[10pt]{article}
23\usepackage[utf8]{inputenc}
24\usepackage{amsmath}
25\usepackage{amsfonts}
26\usepackage{amssymb}
27\usepackage{color}
28\pagestyle{empty}
29\begin{document}
30\definecolor{MyColour}{rgb}{0.50,0.00,0.00}
31{\color{MyColour}';
32
33$conf['postamble'] = '}\end{document}';
34