[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖

[转载教程] 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>
复制代码

返回列表