<?php
/**
 * Default settings for the LaTeX plugin
 * 
 * Primary Author: Wizardry and Steamworks <wizardry.steamworks@outlook.com>
 * Original Authors: Mark Lundeberg, Alexander Kraus, Michael Boyle
 * @license GPL 2
 */

$conf['latex_path']      = 'latex';
$conf['dvips_path']      = 'dvips';
$conf['convert_path']    = 'convert';
$conf['convert_options'] = '-density 120 -trim -transparent "#FFFFFF"';
$conf['identify_path']   = 'identify';
$conf['image_format']    = 'png';
$conf['latex_namespace'] = 'wiki:latexwas';

$conf['xsize_limit']         = 1000;
$conf['ysize_limit']         = 500;
$conf['string_length_limit'] = 2000;

$conf['preamble'] = '\documentclass[10pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{color}
\pagestyle{empty}
\begin{document}
\definecolor{MyColour}{rgb}{0.50,0.00,0.00}
{\color{MyColour}';

$conf['postamble'] = '}\end{document}';
