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.

(1 votes)
Loading...

Similar Posts

Subscribe
Notify of
1 Answer
Oldest
Newest Most Voted
Inline Feedbacks
View all comments