Showing posts with label blog. Show all posts
Showing posts with label blog. Show all posts

Wednesday, September 11, 2019

MathJax example with Latex

MathJax TeX Test Page This is the text \begin{equation} \sqrt{b^2} \end{equation}
<html>
<head>
<title>MathJax TeX Test Page</title>

<script>
MathJax = {
  tex: {
    inlineMath: [['$', '$'], ['\\(', '\\)']]
  },
  svg: {
    fontCache: 'global'
  }
};
</script>
<script type="text/javascript" id="MathJax-script" async
  src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-svg.js">
</script>


</head>
<body>
This is the text
\begin{equation}
\sqrt{b^2}
\end{equation}
</body>




</html>