How can I show math series in JLabel?
Now I am doing it this way using String with HTML tags.
String s = "<html>Σ<sup>N</sup><sub>i = 0</sub> x <sub>i</sub></html>";
Result:

Is there a better way to do this? Because the output is very ugly. Usually Nshould be above sigma and i = 0below.
source
share