I currently use MathJax to write math equations because the result looks professional (More here). It's like an html language.
<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
The problem is that to write one equation requires this much code:
<math display='block'>
<mrow>
<mi>x</mi><mo>=</mo>
<mfrac>
<!-- Start Numerator -->
<mrow><mo>−</mo><mi>b</mi><mo>±</mo>
<msqrt>
<mrow>
<msup><mi>b</mi><mn>2</mn></msup><mo>−</mo><mn>4</mn> <mi>a</mi><mi>c</mi>
</mrow>
</msqrt>
</mrow>
<!-- Start Denominator -->
<mrow>
<mn>2</mn><mi>a</mi>
</mrow>
</mfrac>
Is there a way that I can write math equations like (2y^3)/x^4 and have them appear as neat as MathJax, but with less code?