【问题标题】:Export AsciiMathML equations to Excel Format将 AsciiMathML 方程导出为 Excel 格式
【发布时间】:2012-04-05 09:00:19
【问题描述】:

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

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

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

谢谢。

【问题讨论】:

    标签: php excel transform mathml spreadsheetml


    【解决方案1】:

    使用spreadsheetML stylesheet 将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)
    

    参考文献

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2018-04-18
      • 1970-01-01
      • 1970-01-01
      • 2016-10-24
      • 2023-01-05
      • 2019-10-26
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多