Plot subscript and superscript characters

Is it possible to plot subscript and superscript characters like below using afl?
subscript-and-superscript

Yes, using low-level graphics you can position text anywhere. Also there are subscript encodings in Unicode that do pretty much same thing

GfxSelectFont("Times New Roman", 100 );

GfxTextOut( "H\u2082O", 10, 10 );
2 Likes

This topic was automatically closed 100 days after the last reply. New replies are no longer allowed.