I am facing a problem with the HTML entity inside the TEX code. I went through this link and tried all the steps from there, But still, I'm facing issues in the "&"
symbol.
Here is my Mathjax Configuration Object:
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
messageStyle: 'none',
showMathMenu: false,
processEnvironments:true,
tex2jax: { inlineMath: [['$', '$'], ["\\(", "\\)"]],
processClass: "equationrender",
ignoreClass:"StylePara"
} });
</script>
When i rendering the below latex,
\begin{align}
h(x) &= \int \left( \frac{f(x) + g(x)}{1+ f^{2}(x)}\right)\nonumber\\
r^{2} &= s^{2} + t^{2}, \nonumber\\
2u + 1 &= v + w^{\alpha},\nonumber\\
x &= \frac{y + z}{\sqrt{s + 2u}};
\end{align}
After rendered in web page TEX code changed like below,
\begin{align}
h(x) & = \int \left( \frac{f(x) + g(x)}{1+ f^{2}(x)}\right)\nonumber\\
r^{2} & = s^{2} + t^{2}, \nonumber\\
2u + 1 & = v + w^{\alpha},\nonumber\\
x & = \frac{y + z}{\sqrt{s + 2u}};
\end{align}
How can I convert the & to mathjax understandable latex code (Please refer the screenshot of, the TEX is rendered in browser). Please advice me.