Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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
1answer
1k views

Adding a TM superScript to a string

I need to add the TM(trademark) superscript symbol next to a title in a C# string. is there anyway to possibly do this? Thanks!
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
121 views

Why the display of Unicode characters for superscripted digits are not at the same height?

Why the display of Unicodes for superscripts of digits are not at the same height? This is specially noticeable if you make two digit numbers out of the superscript digits. Some of them look fine but ...
3
votes
4answers
202 views

Java - drawing Polynomials

I'm just wondering how can I draw a polynomial like that X^2+2*X^4+... in efficient way and make it look like a real one. I mean powers is up-script and so.
3
votes
1answer
253 views

How to detect superscript with ItextSharp?

Hy I am using ITextSharp to parse a pdf file to text output. I want to know if I can catch if the pdf contains subscript or superscript, does anyone knows how to make the difference between a normal ...
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 ...
3
votes
3answers
2k views

Superscript registered mark '®' inside select menu

Is is possible to have a superscript registered mark "®" inside a select menu? If so, how is this done? Can you use CSS to achieve this?
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 ...
2
votes
4answers
72 views

How do you print superscript in Python?

I am aware of the \xb function in python, but it does not seem to work for me. I am aware that I may need to download a third party module to accomplish this, if so, which one would be best? I am a ...
2
votes
3answers
90 views

Superscripting any Letter/Number

Is there actually any way to superscript any number? In my App I need to superscript the numbers from 0 to 24. I know that with \u2070 for example I can display a superscripted 0, but in Unicode ...
2
votes
2answers
67 views

phpExcel , how to write superscript in an excel

I`m using the PHPExcel class ,to write in an excel file. My question is: how to write a data in a cell with superscript,if my value is ( M<sup>3</sup>) to M3 (in excel) // ...
2
votes
1answer
78 views

How do I drawtext superscript -1 (unicode)?

Unfortunately, I need to directly drawText on a button and I have to put -1 superscript on it. Problem is that drawText prints small square instead of '\u207b' or ⁻ while it correctly prints ...
2
votes
2answers
471 views

Need a superscript for x raise to b

I need a superscript for displaying x raise to b. I was able to display x raise to 2 (i.e. x square), also x raise to 3 (i.e. x cube).. But now I need to display x raise to b using superscript.. ...
2
votes
1answer
1k views

Unicode characters in string - iphone

I am working on a math app and need to output exponents to the screen. I've found that this code will work: NSLog(@"x\u2070 x\u00B9 x\u00B2 x\u00B3 x\u2074 x\u2075 x\u2076 x\u2077 x\u2078 x\u2079"); ...
2
votes
3answers
705 views

Superscript in C++ console output

I'd like to have my program output "cm2" (cm squared). How do make a superscript 2?
2
votes
6answers
3k views

Superscript underline in IE

I'm going to be brief because I'm short on time, so I apologize if this isn't as detailed as I'd like it to be. I have some code: print("<a href='#'>Some text<sup>&reg;</sup> ...
2
votes
5answers
1k views

How do you add a superscript character into a Powerbuilder textbox?

Is there any way to do this in the Powerbuilder properties window for a datawindow's textbox?
1
vote
1answer
169 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
2answers
184 views

Top of Android superscript being clipped

I tried and searched for a solution to this problem to no avail. The top of letters, such as the tail in a lower-case "d" are being clipped off. Here's is what I currently have: Codewise: From the ...
1
vote
1answer
69 views

C# .NET RichTextBox GetCharOffsetFromPosition?

Is there a way to get character offset from a position? I have a box that looks like this - I want to parse it character by character but I want to detect when it is superscript (which I achieved ...
1
vote
1answer
1k views

Using superscript in an Android textSwitcher

I can't manage to get my textSwitcher to be able to support superscript text. No matter what I try it shows up as regular size text. Here is what I've tried: Spanned span = ...
1
vote
1answer
497 views

How do I write superscript word for checkbox text in java?

I made few checkboxes using swing in Java. I want to write a superscript text for the checkboxes but I'm not sure how. The code currently looks like this. JCheckBox hCheckBox = new JCheckBox("[M + ...
1
vote
1answer
572 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 ...
1
vote
4answers
1k views

Add superscript in Label - Flex

How do I use superscript text in Flex? I tried sup tag in htmlText, but it doesn't work Appreciate your help.
1
vote
3answers
1k views

Is it possible to display superscript characters in the alert() dialog?

Is it possible to display superscripted characters (not only numbers) in the alert(), confirm() or prompt() dialogue boxes in JavaScript? Due to some reasons I need to insert a text: 2 followed by ...
1
vote
8answers
1k views

Ignoring superscript in title tags

I work on a database driven website. Most pages' titles are the names of partners we have, and served from a database using php. For example one page might be called "Experian". The problem is that ...
0
votes
0answers
26 views

Correcting Webkit Vertical Alignment Issue with <sup> and CSS vertical-align:top on TD

Made a major revision to demonstrate issue and clarify cause in CSS: Chrome and Safari display this code: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" ...
0
votes
1answer
18 views

Browser font with consistent numeral superscripts

This question is a follow up to: Why the display of Unicode characters for superscripted digits are not at the same height? I would like to find a commonly available font, or better a font stack, ...
0
votes
3answers
62 views

Storing and displaying text with superscript text

I have the following data stored in a field "call_dtls" in a mysql table. This data is stored as TEXT datatype. Data is submitted using a <textarea> control from a PHP-generated page. Code for ...
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
3answers
138 views

Superscript “Registered mark” in UIPickerView

I need to show a registered trademark symbol in a superscript (exponent position) in respect to the name of the label. need to show it in a uipickerView and a label. I havent found the option of how ...
0
votes
1answer
132 views

How to transform superscript/subscript in XML to HTML

I have the following XML snippet with formulas as part of some other text. This is being transformed to HTML by an XSLT. The final HTML output should reflect the superscript applied. What is the right ...
0
votes
1answer
97 views

superscript first item in piece of text with css

I want to superscript the first character of this text with css $50.00 so that the $ is only half the height of the rest of the text. How can I do this with css? Is there any way of being able to ...
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
1answer
360 views

How can I use CSS to make a uniform underline within an anchor superscript text?

I did not find any solution do this question: How can I use CSS to make a uniform underline within an anchor superscript text? But it is solved on your "Ask Question" page, when we fill it. How did ...
0
votes
1answer
346 views

Save superscript symbols in SQL Server

I want to save alpha, beta, theta and all super script symbols in SQL Server database through my .Net windows application. And I need to fetch again and want to show on label control. What do I have ...
0
votes
1answer
236 views

How to get a superscript in Qt Creator for label text?

I am trying to create a superscript of a 2 to show something is squared for the units label that comes after a field the user supplies in my dialog. I am using Qt Creator v2.0.1 on Windows. The ...
0
votes
0answers
283 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
1answer
655 views

Superscript text formatting for NSIS

I am developing an NSIS installer for a product that has a superscript in its name. Is it possible to encode superscript text in the installer script? In particular, I'd like to get the Name, ...
0
votes
3answers
2k views

ASP.NET How can i add superscript into a label control?

For example currently, the value is set with lblAmount.Text = Amount & " €" How can i add (dynamically) superscript to the € sign?
0
votes
3answers
783 views

Add Registered Trademark symbol in Flex

How do I add registered trademark symbol in Flex?
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 ...
-1
votes
1answer
360 views

Display Superscript in SSRS reports

I m working on SSRS 2008. i want to display date as 1st January 2011.. but "st" should be in superscipt .. not like "1st". is there any way to display "st", "nd","rd" and "th" in superscipt without ...