subscripts and superscripts in SVG
- by peter.murray.rust
I am trying to display sub- and superscripts with SVG using the following code from this site
<svg xmlns="http://www.w3.org/2000/svg" version="1.1">
<g>
<text x = "10" y = "25" font-size = "20">
<tspan>
e = mc
<tspan baseline-shift = "super">2</tspan>
</tspan>
…