コード例 #1
0
ファイル: Math.php プロジェクト: GodelDesign/Godel
 public static function renderMath($tex, $params = array(), ParserOptions $parserOptions = null)
 {
     $math = new MathRenderer($tex, $params);
     if ($parserOptions) {
         $math->setOutputMode($parserOptions->getMath());
     }
     return $math->render();
 }