content mathml to infix notation using ctop.xsl not getting as desired format
问题 I am trying to make math notation or infix expression from content mathml, I am making help of ctop.xsl for this: /***ctop.xsl**/ Refer It can be parsed to get the expression as follows: <html> <head> <script> function loadXMLDoc(filename) { if (window.ActiveXObject) { xhttp = new ActiveXObject("Msxml2.XMLHTTP"); } else { xhttp = new XMLHttpRequest(); } xhttp.open("GET", filename, false); try {xhttp.responseType = "msxml-document"} catch(err) {} // Helping IE11 xhttp.send(""); return xhttp