JS MathJax not working?
I want to use LaTeX formulas on my website. Formulas defined directly in HTML or in JavaScript without delay are also formatted correctly in formulas.
However, formulas that are added to the website, e.g. by pressing a button or after the DOM has fully loaded, are not rendered and look like this: \(Test\).
Here is the code to import MathJax:
MathJax = { tex: { inlineMath:[['$', '$'],['\\(','\\)']] } } const script = document.createElement('script') script.type = 'text/javascript' script.async = true script.src = ' https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.7/MathJax.js?config=TeX-MML-AM_CHTML ' document.head.appendChild(script)
Furthermore, I cannot use MathJax methods in JS either.
I would be grateful for any help.
I read the developer documentation about MathJax and used the import links there. Now I import the following scripts directly in the head element in HTML.
By importing the library with these left, the MathJax methods are now available to me in JS, which allows me to format non-formatted formulas by using the following method: