Board logo

标题: [转载教程] mathjax.js 解析html中的数学公式 [打印本页]

作者: happy886rr    时间: 2017-3-17 21:45     标题: mathjax.js 解析html中的数学公式

用mathjax.js 可以轻松解析html中的数学公式,数学公式用$$符号包围。详见官方文档 http://docs.mathjax.org/en/latest/start.html
测试代码:
  1. <html>
  2. <head>
  3. <script type="text/x-mathjax-config">
  4. MathJax.Hub.Config({tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}});
  5. </script>
  6. <script type="text/javascript" async
  7. src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_CHTML">
  8. </script>
  9. </head>
  10. <body>
  11. <h1>DEMO</h1>
  12. If
  13. $$a \ne 0$$
  14. there are two solutions to \(ax^2 + bx + c = 0\) and they are
  15. $$x = {-b \pm \sqrt{b^2-4ac} \over 2a}.$$  
  16. </body>
  17. </html>
复制代码





欢迎光临 批处理之家 (http://bbs.bathome.net/) Powered by Discuz! 7.2