0

How to write left subscript and superscript preserving correct syntax of MathML? I mean something like this:

left sub- and superscript

Thanks for the hints.

rafalry
  • 2,620
  • 6
  • 24
  • 39

1 Answers1

1

Use <mmultiscripts> - see http://www.w3.org/TR/MathML3/chapter3.html#presm.mmultiscripts for details. In your case, it's:

<mmultiscripts>
    <mi>a</mi>
    <mprescripts/> <mi>c</mi> <mi>b</mi>
</mmultiscripts>
Dave Barton
  • 1,429
  • 13
  • 12