Skip to content

Instantly share code, notes, and snippets.

@Atlinx
Created April 26, 2021 18:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Atlinx/a5554f0eb245a755f91d647c254a6188 to your computer and use it in GitHub Desktop.
Save Atlinx/a5554f0eb245a755f91d647c254a6188 to your computer and use it in GitHub Desktop.
MathJax example // source https://jsbin.com/cufexef
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>MathJax example</title>
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
<script id="MathJax-script" async
src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js">
</script>
</head>
<body>
<p>
When \(a \ne 0\), there are two solutions to \(ax^2 + bx + c = 0\) and they are
\[x = {-b \pm \sqrt{b^2-4ac} \over 2a}.\]
</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment