我终于让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 );
这就是结果。
当我在主页上输入相同的内容时,它显示了this。
请帮助-我不知道为什么公式格式有效,但是\ text和\ table以及所有\命令的格式都不正确!?!?
答案 0 :(得分:0)
好吧,我最终找到了答案。问题与jqMath无关!当时是Android Studio! Android Studio具有这种奇怪的解析反斜杠\的方式,因此我不得不将文本更改为
$$\text"Molarity" = \text"moles of solute" / \text"liters of solution"$$
到
$\\\\text\\\"Molarity\\\" = \\\\text\\\"moles of solute\\\" / \\\\text\\\"liters of solution\\\"$
这是因为Android Studio中的字符串似乎经历了自动反斜杠解析。 所以我以前的文字在经历jqMath格式之前被更改了。通过添加更多反斜杠(每个反斜杠四个反斜杠),我可以将字符串转换为正确的字符串以通过jqMath!