w.loadDataWithBaseURL("http://bar/", "<script type='text/x-mathjax-config'>"
+ "MathJax.Hub.Config({ "
+ "jax: ['input/TeX','output/HTML-CSS'], " // output/SVG
+ "extensions: ['tex2jax.js','toMathML.js'], "
+ "TeX: { extensions: ['AMSmath.js','AMSsymbols.js',"
+ "'noErrors.js','noUndefined.js'] }, "
//+"'SVG' : { blacker: 30, "
//+"styles: { path: { 'shape-rendering': 'crispEdges' } } } "
+ "});</script>"
+ "<script type='text/javascript' "
+ "src='file:///android_asset/MathJax/MathJax.js'"
+ "></script>"
+ "<script type='text/javascript'>getLiteralMML = function() {"
+ "math=MathJax.Hub.getAllJax('math')[0];"
// below, toMathML() rerurns literal MathML string
+ "mml=math.root.toMathML(''); return mml;"
+ "}; getEscapedMML = function() {"
+ "math=MathJax.Hub.getAllJax('math')[0];"
// below, toMathMLquote() applies &-escaping to MathML string input
+ "mml=math.root.toMathMLquote(getLiteralMML()); return mml;}"
+ "</script>"
+ "<span id='math' style='display:flex;'></span><pre><span id='mmlout'></span></pre>", "text/html", "utf-8", "");

웹뷰에서 mathjax를 보여주는 어플입니다. 하단에 이렇게 스테이터스바가 나오는데 하단에 나타나는 status bar 를 지우기 위해
w.loadDataWithBaseURL("http://bar/", "<script type='text/x-mathjax-config'>"
+ "MathJax.Hub.Config({ "
+ "messageStyle: none," +
" tex2jax: {preview: none},"
+ "jax: ['input/TeX','output/HTML-CSS'], " // output/SVG
+ "extensions: ['tex2jax.js','toMathML.js'], "
+ "TeX: { extensions: ['AMSmath.js','AMSsymbols.js',"
+ "'noErrors.js','noUndefined.js'] }, "
//+"'SVG' : { blacker: 30, "
//+"styles: { path: { 'shape-rendering': 'crispEdges' } } } "
+ "});</script>"
+ "<script type='text/javascript' "
+ "src='file:///android_asset/MathJax/MathJax.js'"
+ "></script>"
+ "<script type='text/javascript'>getLiteralMML = function() {"
+ "math=MathJax.Hub.getAllJax('math')[0];"
// below, toMathML() rerurns literal MathML string
+ "mml=math.root.toMathML(''); return mml;"
+ "}; getEscapedMML = function() {"
+ "math=MathJax.Hub.getAllJax('math')[0];"
// below, toMathMLquote() applies &-escaping to MathML string input
+ "mml=math.root.toMathMLquote(getLiteralMML()); return mml;}"
+ "</script>"
+ "<span id='math' style='display:flex;'></span><pre><span id='mmlout'></span></pre>", "text/html", "utf-8", "");
와같이 이부분을 추가 했는데
+ "messageStyle: \"none\"," +
" tex2jax: {preview: \"none\"},"

이렇게 라텍스가 아예렌더링이 되지않네요.
https://github.com/mathjax/mathjax-docs/wiki/Hide-render-statusbar
여기에 있는 mathjax깃허브의 내용을 그대로 입력한 것입니다. 이것때문에 미치겠네요