Forum Discussion
How to add Accessible Mathematics to your rise course. (Including Super and Sub Scripts and Formulas)
- 8 months ago
Hello everyone, 🎉
I’m happy to let you know we released a new update for Rise 360. This update adds the following feature:
- Build math equations using LaTeX syntax and revise them by adding color and alt text.
There’s nothing to install for web apps. New features and fixes are immediately available, though you might need to publish your Rise 360 course again.
Let me know if you have any questions about this update or the new feature.
This served me perfectly before, but in my recent exports the main.bundle.js file has not contained the expression:
return e.createElement("div", null, this.props.children)
There is a
return e.createElement("div",null,this.props.children,e.createElement("div",{className:"browser-support"},....
but adding the MathJax line here does not seem to help. Any ideas?
Edit: The math content seems to be loading properly after completing a browser page refresh, but does not load properly when navigating from lesson to lesson.
Edit 2: Though I don't understand JavaScript well enough to understand what exactly is happening, I have things working by brute force: replacing ALL instances of:
;return e.createElement("div"
with
;MathJax.Hub.Queue(["Typeset",MathJax.Hub]);return e.createElement("div"