Tagged Questions

5
votes
5answers
3k views

Subscript and Superscript a String in Android

How can you print a string with a subscript or superscript? Can you do this without an external library? I want this to display in a TextView in Android.
4
votes
2answers
678 views

How to convert super- or subscript to normal text in C#

I'm writing a slug generator for making nice urls. I'd like to convert m² to m2, but in a generic way that does this for all superscript (or subscript), not just a simple replace statement. Any ...
4
votes
4answers
2k views

Set superscript and subscript in formatted text in wpf

How can i set some text as subscript/superscript in FormattedText in wpf
3
votes
2answers
906 views

Subscript / superscript in FormattedText class?

I'm creating Text using the FormattedText class - but how can I subscript oder superscript Text when using this class? I found solution on how to do this when using a TextBlock, but I'm using ...
2
votes
1answer
48 views

Superscript and Subscript in WP7

I'm trying to show "H2O" with the 2 in subscript in a PivotItem Header. E.g. <controls:PivotItem Header="H20"> </controls:PivotItem> I'd also like to assign the same value from code ...
1
vote
1answer
170 views

How to write a subscript and superscript in Matlab that will be displayed in Graphical User Interface(GUI)?

I want to have a subscript and superscript in my GUI in Matlab. So far I have tried to use x_2 and x^2 and neither of them work. Is there anyone who knows how to do this? Thanks in advance!
1
vote
1answer
573 views

HTML styling problem when using <sup> and <sub>

I've noticed that when trying to use superscript or subscript in the following way... <ul> <li><b>Mean Radius</b> 6,371.0 km</li> <li><b>Mean ...
1
vote
1answer
462 views

Qt - How to do superscripts and subscripts in a QLineEdit?

I need to have the ability to use superscripts asnd subscripts in a QLineEdit in Qt 4.6. I know how to do superscripts and subscripts in a QTextEdit as seen below but I can't figure out how to do them ...
0
votes
2answers
112 views

Sub/Superscripts in UITextView

I want to display and edit superscripts and subscripts my application. In UITextView's documentation it said that you cannot use any kind of formatting that doesn't apply to the whole document. I ...
0
votes
0answers
85 views

How to add subscript/superscript to buttons label in flex?

I need to add subscript or superscript and normal text to buttons label. But as far as I understand button's label property is simple label, if it was RichText it would be easy. I need ...
0
votes
0answers
299 views

contentEditable superscript & subscript in Chrome

The following DHTML formatting commands each work fine on a div with contentEditable=true in IE, Firefox and Chrome: document.execCommand("superscript", false, null); ...
0
votes
0answers
284 views

How to simulate a Text Edit on a TForm/TPaintBox.TCanvas properly?

Thank you very much for your time! The purpose is to allow user to input discrete superscript & subscript letters (with basic functionality of a TEdit, such as select, and etc). It is better if ...
0
votes
2answers
1k views

How to print subscripts/superscripts on a CLI?

I'm writing a piece of code which deals with math variables and indices, and I'd need to print subscripts and superscripts on a CLI, is there a (possibly cross-platform) way to do that? I'm working in ...