23 lines
537 B
HTML
23 lines
537 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>MathJax AsciiMath Test Page</title>
|
||
|
<script>
|
||
|
MathJax = {
|
||
|
loader: {load: ['input/asciimath', 'output/chtml']}
|
||
|
}
|
||
|
</script>
|
||
|
<!-- <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -->
|
||
|
<script type="text/javascript" id="MathJax-script" async
|
||
|
src="./node_modules/mathjax/es5/startup.js">
|
||
|
</script>
|
||
|
<body>
|
||
|
|
||
|
<p>When `a != 0`, there are two solutions to `ax^2 + bx + c = 0` and
|
||
|
they are</p>
|
||
|
<p style="text-align:center">
|
||
|
`x = (-b +- sqrt(b^2-4ac))/(2a) .`
|
||
|
</p>
|
||
|
|
||
|
</body>
|
||
|
</html>
|