1

我必须将具有 AsciiMathML 表示法的数学问题列表导出到 Excel 电子表格,并且我想正确显示方程式。我的代码是用 PHP 编写的,我想在服务器端创建 Excel 文件并使其可供下载。

我发现 JavaScript 中有许多库可以将 AsciiMathML 转换为图像,例如http://dlippman.imathas.com/asciimathtex/AMT.html

但我需要的是使用 PHP 将方程转换为图像,或者最好在服务器端转换为 Excel 方程。有没有人知道我可以使用的任何库?如果有人可以帮助我,我真的很感激。

谢谢你。

4

1 回答 1

0

使用spreadsheetML 样式表将 MathML 转换为 Excel,使用如下transformToXML函数:

$xml = new DOMDocument;
$xml->load($file_name);

$xsl = new DOMDocument;
$xsl->load('convert.xsl');

$proc = new XSLTProcessor;
$proc->importStyleSheet($xsl);

$result = $proc->transformToXML($xml)

参考

于 2012-05-18T01:48:40.360 回答