Loading...
Logo
Processing Forum

A way to make text superscript?

in General Discussion  •  Other  •  9 months ago  
Hi All,

I'm working on writing a program to help me teach Chemistry and I'm looking for a way to make some text superscript (and subscript), so that I can write Atomic Number, Atomic Mass, Charge, etc. next to Element Symbols.  I've been looking around the interwebs for awhile but haven't found any way to make it work.

I am using the G4P library to put my text in the window (using GTextField). but I don't think my question is specific to the G4P library. (Please tell me if I'm wrong).

Any ideas would be most welcome!
Thank you!


Replies(3)

In pure Processing, you have no choice but to reduce the font size and display the text with a little offset...
Processing is a rather low level API.
G4P version 3 introduced a new class called StyledString which supports various text formatting including super and subscript.

The short sketch below displays the atomic symbol, number(super) and weight(sub) for gold. You should see something like
Au 79 196.97
  EDIT sorry the super/sub only showed when I was editing this post and disappeared when I published it.

Unfortunately the super and subscripts can not be displayed in the same horizontal position I will have to see if I do something that for a future release.

Notice that I am using a GLabel to display the text, I would only use a GTextField for input in which case it has methods for styling any selected/highlighted text (see G4P_TextAreaControl example that comes with the library).

Copy code
  1. import g4p_controls.*;
  2. StyledString gold;
  3. GLabel l0;

  4. void setup() {
  5.   size(300, 300);
  6.   gold = new StyledString("Au79196.97");
  7.   gold.addAttribute(G4P.SUPERSCRIPT, G4P.SUPERSCRIPT_SUPER, 2, 4);
  8.   gold.addAttribute(G4P.SUPERSCRIPT, G4P.SUPERSCRIPT_SUB, 4, 10);
  9.   l0 = new GLabel(this, 20, 50, 100, 22);
  10.   l0.setOpaque(true);
  11.   l0.setStyledText(gold);
  12. }

  13. void draw() {
  14.   background(255);
  15. }

Maybe not related to your problem, you can send a LaTex formula to a website, what returns a PNG file. For example :
link
Results in :


More info can be found here:
http://sciencesoft.at/latex/?lang=en