Skip to content Skip to sidebar Skip to footer

How To Use Math Jax?

I've been read the docs and I still don't get how to apply it from TeX so basically i wanted to convert this string

\\( x>0,y>

Solution 1:

You are using \\ instead you should use \.

Here is your working code.

<script>
  MathJax = {
    tex: {
      inlineMath: [
        ['$', '$'],
        ['\\(', '\\)']
      ],
    }
  };
</script>

<script type='text/javascript' async src='https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js?config=TeX-MML-AM_CHTML'>
</script>
<p>
  <span class='math-tex'>( \(\frac{2}{7},\frac{2}{18}\) )</span>
</p>

Post a Comment for "How To Use Math Jax?"