It is sad to see that science and math is never given enough attention in Android platform. Maybe this is an easy problem, but I\'m a total dude in javascript so I\
Instead of using javascript and javascript libraries to render the LaTeX client-side, why not do the following?
Write a server-side function that takes some LaTeX string and produces an image file. You can do this with the "out of the box" standard LaTeX command line tool. (It seems like this is something you're capable of doing, and that the problem is in getting the rendering to take place client-side.)
Create an endpoint on your web site/service that looks like the following:
GET /latex?f={image format}&s={latex string}
On your web pages, use a simple HTML <img/>
tag to render your LaTeX. For example:
<img src="/latex?f=jpeg&s=f%40x%41%61x%942"/>
will render the f(x)=x^2
equation as a JPEG.
(optional) Create a simple server-side cache for (f,s)
pairs so that you only render a particular LaTeX string on the first request ever made for that particular string (by any client). As a first prototype, you could just have a server directory in which you have files named {hash(s)}.{f}
, where hash
is just some hash function like SHA1
.
This relieves you from trying to make everything work client-side with javascript. And, I would argue (although some may disagree), that this is a lot cleaner. All you're sending to the client is:
<img/>
tagsrc
attributeVery lightweight and fast!
You can easily use math formula in android using below code.
public void setView(String data,WebView w){
WebSettings webSettings = w.getSettings();
webSettings.setJavaScriptEnabled(true);
String path="file:///android_asset/v/";
String js="<html><head>"
+ "<link rel='stylesheet' href='file:///android_asset/v/jqmath.css'>"
+ "<script src = 'file:///android_asset/v/jquery-3.0.0.min.js'></script>"
+ "<script src = 'file:///android_asset/v/jqmath-etc-0.4.3.min.js'></script>"
+ "<script src = 'http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML'></script>"
+ "</head><body>"
+ "<script>var s ='"+data+"';M.parseMath(s);document.write(s);</script> </body>";
w.loadDataWithBaseURL("", js, "text/html", "UTF-8", "");
}
Late to the party but I think I have a better solution than Joe's. The original question asked:
how can I show plain text in paragraph and a formatted equation within the same webview?
In the original example we had:
w.loadUrl("javascript:document.getElementById('math').innerHTML='\\\\["
+doubleEscapeTeX("sample string")
+"\\\\]';");
Do you notice the \\\\[
and \\\\]
? Those four backslashes are interpreted by LaTeX as only one, and \[
and \]
in LaTeX is a shorthand for \begin{equation}... \end{equation}
which produces a block of displayed mathematics. If we want a paragraph of text with some equations within the paragraph we need to get rid of the \\\\[
and use the LaTeX command \(
and \)
. The code for an example with paragraph mathematics and displayed mathematics would be:
w.loadUrl("javascript:document.getElementById('math').innerHTML='"
+doubleEscapeTeX(
"This is a second degree equation \\( \\small ax^2+bx+c=0\\) and its "
+"roots are \\[x=\\frac{-b\\pm \\sqrt{b^2-4ac}}{2a}. \\]"
)+"';");
The WebView becomes: Notes:
We only need two backslashes instead of four, this is because we are inside doubleEscapeTeX()
and this function duplicates the backslashes.
Also the text outside the math environments is rendered with HTML (inside the <span id='math'>
tag).
The LaTeX font is bigger that the html font, so adding a \\small
in each math environment will make them roughly the same size. Here I added the \\small
command only to the first equation to show the difference.
If I understand your problem correctly, it seems the issue is due to the MathJax library has not completed loading (from the loadDataWithBaseURL()
call) when you call the additional loadUrl()
s to display the formula. The simplest fix is to wait for the onPageFinished()
callback to make the call.
For example, the following code seems to work fine on mine:
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
final WebView w = (WebView) findViewById(R.id.webview);
w.getSettings().setJavaScriptEnabled(true);
w.getSettings().setBuiltInZoomControls(true);
w.loadDataWithBaseURL("http://bar", "<script type='text/x-mathjax-config'>"
+ "MathJax.Hub.Config({ "
+ "showMathMenu: false, "
+ "jax: ['input/TeX','output/HTML-CSS'], "
+ "extensions: ['tex2jax.js'], "
+ "TeX: { extensions: ['AMSmath.js','AMSsymbols.js',"
+ "'noErrors.js','noUndefined.js'] } "
+ "});</script>"
+ "<script type='text/javascript' "
+ "src='file:///android_asset/MathJax/MathJax.js'"
+ "></script><span id='math'></span>", "text/html", "utf-8", "");
w.setWebViewClient(new WebViewClient() {
@Override
public void onPageFinished(WebView view, String url) {
super.onPageFinished(view, url);
if (!url.startsWith("http://bar")) return;
w.loadUrl("javascript:document.getElementById('math').innerHTML='\\\\["
+ doubleEscapeTeX("sample string") + "\\\\]';");
w.loadUrl("javascript:MathJax.Hub.Queue(['Typeset',MathJax.Hub]);");
}
});
}
Update: To accommodate additional output in the WebView, I would suggest adding HTML elements to the initial loadDataWithBaseURL()
call. So for the example above, instead of this line at the end:
+ "></script><span id='math'></span>", "text/html", "utf-8", "");
We can do something like the following:
+ "></script><span id='text'>Formula:</span>"
+ "<span id='math'></span>", "text/html", "utf-8", "");
Additionally, if you need to update that part interactively afterward, you can use the same mechanism that we used for the "math" part, something like:
w.loadUrl("javascript:document.getElementById('text').innerHTML='"
+ newText + "';");
You can also use other HTML elements (instead of the <span>
that we use above) if you want to have specific styling/formatting.
The "capital A" problem is a konwn bug of MathJax on Android WebView. You can replace the font files with tweaked font files. The fix will work when using HTML-CSS output with TeX-fonts. Besides MathJax, you can try KaTeX, which is less beautiful but faster.
Actually I've packed them both into an Android custom view, have a look on MathView.
jqMath is a JavaScript library like MathJax, but much smaller, simpler, and faster. If you don't need all of LaTeX, you might like it. It should work fine on Android.
It is just a suggestion, I have no idea what errors or advantages you might have if you use MathJax.
MathJax is much bigger and more complicated than jqMath, and roughly 5 times slower.
Working JSFIDDLE: http://jsfiddle.net/sinhayash/gWWB5/1/
For \sqrt{b^2-4ac}
you can have this code: √(b^2-4ac)
You can easily use string handling in javascript to convert strings to the jqMath format and easily display it