sample-tex.html 629 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>MathJax TeX Test Page</title>
  5. <!-- Copyright (c) 2010-2015 The MathJax Consortium -->
  6. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  7. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  8. <script type="text/x-mathjax-config">
  9. MathJax.Hub.Config({
  10. tex2jax: {inlineMath: [["$","$"],["\\(","\\)"]]}
  11. });
  12. </script>
  13. <script type="text/javascript" src="../MathJax.js?config=TeX-AMS_HTML-full"></script>
  14. </head>
  15. <body>
  16. <p>
  17. When $a \ne 0$, there are two solutions to \(ax^2 + bx + c = 0\) and they are
  18. $$x = {-b \pm \sqrt{b^2-4ac} \over 2a}.$$
  19. </p>
  20. </body>
  21. </html>