【数据可视化】实现网页呈现MATHML数学公式的思路

显示存储为MATHML格式文本的公式

Created with Raphaël 2.1.0 了解MATHML 了解呈现方式 链接MATHHTML与呈现 分析实现方式 还有其他方式 开发 yes no

分析过程

呈现方式 链接 实现方式 满足要求吗
原生元素 限于opera/firefox
第三方插件 至少chrom不行
图片 jeuclid(java,后台) 离线检索数据库,转相应文本为图片
AsciiMath mathml-to-asciimath.js 前台集成相应js,再集成AsciiMath渲染库
MathJax 编写mathml-to-mathjax.js
css 编写mathml-to-css.js
canvas 编写mathml-to-canvas.js
svg mathml-to-svg.js 前台集成相应js

链接

搜索关键字 链接
MATHML https://en.wikipedia.org/wiki/MathML
网页呈现数学公式 https://www.zhihu.com/question/26798550
convent MATHML to png https://sourceforge.net/projects/jeuclid/ http://blog.csdn.net/xingtian713/article/details/11917183
convent MATHML to asciimath,asciimath https://github.com/learningobjectsinc/mathml-to-asciimath http://asciimath.org/
convent MATHML to MathJax,MathJax https://www.mathjax.org/
convent MATHML to css 参照mathml-to-svg,mathml-to-asciimath.js,参照数学公式的css实现
convent MATHML to canvas 参照mathml-to-svg
convent MATHML to svg https://github.com/ForbesLindesay/mathml-to-svg

你可能感兴趣的:(数据可视化,思筹之路)