Mathjax 离线用于 Web 视图

Mathjax offline for web view

通过链接 mathjax cdn for react native 使用 webview 渲染数学内容很常见。但是如何解决使其离线的问题。

  1. 有没有办法在本地维护该包?

  2. 甚至更喜欢它吗?

  3. 捆绑包的大小是多少?我不希望我的应用程序大小超过 10mb。

下载你的 mathjax

http://docs.mathjax.org/en/latest/installation.html

进入=>android/app/src/main/assets/

现在在您的网络视图中 html 代码集脚本参考

<script src="file:///android_asset/MathJax/MathJax.js?config=TeX-MML-AM_CHTML"></script>

和您在 html 中的必要配置。 还要确保将 base url 设置为您的文件夹名称。

<WebView source={{ html, baseUrl: 'file:///android_asset/MathJax/' }} />

您还可以 https://github.com/mathjax/MathJax-grunt-cleaner 通过删除您不使用的不必要的字体和格式来减小 Mathjax 资源的大小。