sample-tex.html 698 B

1234567891011121314151617181920212223242526
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>MathJax TeX Test Page</title>
  5. <!-- Copyright (c) 2010-2017 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. <meta name="viewport" content="width=device-width, initial-scale=1">
  9. <script type="text/x-mathjax-config">
  10. MathJax.Hub.Config({
  11. tex2jax: {inlineMath: [["$","$"],["\\(","\\)"]]}
  12. });
  13. </script>
  14. <script type="text/javascript" src="../MathJax.js?config=TeX-AMS_HTML-full"></script>
  15. </head>
  16. <body>
  17. <p>
  18. When $a \ne 0$, there are two solutions to \(ax^2 + bx + c = 0\) and they are
  19. $$x = {-b \pm \sqrt{b^2-4ac} \over 2a}.$$
  20. </p>
  21. </body>
  22. </html>