Need "visible times" symbol in Content MathML
Created by: metelkin
Thank you for your work!
We are using MathJax with extensions like "content-mathml.js" in our project to translate from content MathML to html. The <times/>
tag is translated always to "invisible times" symbol which looks not always OK for complicated equations.
We have found the solution but it requires JS code modification. Is it possible to allow users to choose the symbol for times in MJ options? The better solution would be use the same approach as for gamma symbol in config function example or similar.
MathJax.Hub.Config({ "content-mathml": { collapsePlusMinus: true, cistyles: { vector: 'bold-italic', matrix: 'bold-upright' }, symbols: { gamma: '\u03B3' } } });