1<?php
2/**
3 * Default settings for the latexit plugin
4 *
5 * @author Adam Kučera <adam.kucera@wrent.cz>
6 */
7
8$conf['document_class'] = 'article';
9$conf['font_size'] = '10';
10$conf['paper_size'] = 'a4paper';
11$conf['output_format'] = 'oneside';
12$conf['landscape'] = 0;
13$conf['draft'] = 0;
14$conf['document_header'] = '';
15$conf['document_footer'] = '';
16$conf['document_lang'] = "english";
17$conf['header_chapter'] = 0;
18$conf['header_part'] = 0;
19$conf['header_title'] = 0;
20$conf['title'] = "";
21$conf['author'] = "";
22$conf['date'] = 0;
23$conf['table_of_content'] = 0;
24$conf['media_folder'] = 'media';
25$conf['image_params'] = 'keepaspectratio=true,width=0.8\textwidth';
26$conf['bibliography_style'] = 'plain';
27$conf['bibliography_name'] = 'bibliography';
28$conf['link_insertion_message'] = "Next link is recursively inserted.";
29$conf['default_table_align'] = 'l';
30$conf['showexportbutton'] = 1;