Davide P. Cervone
Davide P. Cervone
The `enableEnrichment` option (along with `enableSpeech`, `enableBraille`, and the other `enable*` options) are controlled by the menu settings (when the menu component is present), and are only useful in a...
Speech generation has been on for all v4 versions since the alpha.1 version, so that is not a change in beta.6. Braille generation is on by default in beta.6, which...
In beta.6, the speech generation was reorganized. In the past, it was spread out over several different functions, but in beta.6, that was all collected into the `getSpeech()` function, so...
> I could provide test cases and time differences from beta4 to beta6 if that would assist you. Thank you for the offer, but I do have examples to work...
Here is a configuration that you can use to hook into the reset menu: ``` js MathJax = { startup: { ready() { MathJax.startup.defaultReady(); const reset = MathJax.startup.document.menu.menu.find('Reset'); reset.registerCallback((item) =>...
Thanks for the report. You are correct, there is an error in producing the SVG: I called the HTML serializer rather than the XML serializer in error. I will make...
I think that would require the rowspan/columnspan support, which we don't yet have. I'm also not sure what MathML structure might correspond to a variable number of dots, as there...
This is a duplicate of #3120, which was caused by the new code that adds the LaTeX that produced each MathML element in an attribute on that element. A fix...
MathJax only processes TeX that is within math delimiters. In your case, those are the `\begin{equation}` and `\end{equation}`, so the `% etc` is outside of the mathematics, and MathJax does...
Note that the viewport units are part of CSS3, but CSSStyleDeclaration only implements CSS2. Also, `calc()`, while widely supported, is not part of any formal specification. Since CSSStyleDeclaration implements its...