1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
| <?
include('blotex.php');
$B = new BloTeX;
$B->config = array_merge($B->config,
array(
'xhtml_toc_start' => 2,
'toc_depth' => '1',
'toc_down' => '</ul>
',
'title_tag' => 'h1',
'toc_up' => '<ul class="menu">',
'toc_shownumbers' => false,
'sections_shownumbers' => false,
'section_0_before' => '<span class="top">[<a href="#">haut</a>]</span>',
'footnotes_1_separator' => '<hr />'
)
);
if (isset($_GET['tex']) && (file_exists($_GET['tex'].'.tex')) && (preg_match('/^[a-z0-9\/]*$/',$_GET['tex']))) {-
$B->config['toc_up'] .= '<li><a href="./">Accueil</a></li>';
$f = $_GET['tex'];
} else {
$f = 'root';
}
$f = './' . $f . '.tex';
echo = $B->render(file_get_contents($f));
?> |
Partager