我终于让 jqMath 在 Android Studio 中工作,但后来我意识到它没有正确格式化 \text 和 \table! https://mathscribe.com/author/jqmath.html 在上面的 jqMath 主页上,示例展示了如何使用 \text 和 \table。
在我的项目中,我使用这个字符串。
$$\text"Molarity" = \text"moles of solute" / \text"liters of solution"$$
而这个 jqMath 的代码。
WebView webView = new WebView(context);
WebSettings webSettings = webView.getSettings();
webSettings.setJavaScriptEnabled(true);
String path="file:///android_asset/";
String js = "<html><head>"
+ "<link rel='stylesheet' href='"+path+"jqmath-0.4.3.css'>"
+ "<script src='"+path+"jquery-1.4.3.min.js'></script>"
+ "<script src='"+path+"jqmath-etc-0.4.6.min.js'></script>"
+ "</head><body>"
+ "<script>var s = '"+formulaText+"';jqMath.parseMath(s);document.write(s);</script></body>";
webView.loadDataWithBaseURL( "file:///android_asset/", js, "text/html", "utf-8", null );
这就是结果。
当我在主页上输入相同的内容时,它显示了这个。
请帮助-我不知道为什么公式格式有效,但是 \text 和 \table 以及所有 \ 命令的格式都不正确!?!?