The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
27 views

How to add subscript and superscript text in kinetic text

I am using kinetic.js to create a text object in a canvas. Now I need to create a text object with subscript and superscript e.g: H2O (here '2' will be subscript) and I am not able to create a ...
1
vote
1answer
49 views

Android application name with superscript

How can I make the application name in superscript, I've tried this way: <string name="app_name">SomeApp <sup><small><b>beta</b></small></sup></string> ...
0
votes
0answers
36 views

Android String Resource Superscript

I have a string resource file, which I want to pull strings from and I want one of the strings to have some superscript in it. From ...
-1
votes
2answers
98 views

CSS/HTML - How can I write superscript in a <input type=“button”/>?

Let's say I have something like this: <input type="button" value="2(8)"> I want to have the "(8)" as a superscript how? Note: I know that you can do it with: ...
0
votes
1answer
39 views

Superscript/subscript in ListView (android)

I'm new to android and I'm just learning. I want some help on how to get superscript in ListView in android. For now, I have a TextView which can make it by < sup > tag using Html.fromHtml() ...
0
votes
3answers
69 views

How to align “sup” in h1 with big font

I am making a website where I have a h1 with a large font size. What I am trying to do is to make a superscript that is aligned to the top of the text but no matter I do sup is not aligned properly. ...
0
votes
1answer
69 views

Superscript and Subscript in Android App XML

I am parcing data from an XML file which has subscript and superscript characters in them which i got from the character map. Like so: <value column="Back" null="false">H₂</value> but ...
2
votes
2answers
125 views

special characters and superscripts R plot axis titles

I am trying to make a y-axis title with both a special character and a superscript. I am able to do this, but I want the closing parentheses not to be superscripted. And that's what I'm having a ...
0
votes
1answer
51 views

Overriding vertical-align required for superscript but applied by table attributes

Below is my code, <table border="0" cellspacing="1" cellpadding="0" width="100%"> <tr> <td width="31%" align="center" valign="middle"> <a href="http://google.com/"></a> ...
0
votes
2answers
373 views

Change font-size within table cell

<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <title>Superscript_size_in_table_cell</title> <meta name="generator" content="BBEdit ...
2
votes
1answer
59 views

How to convert successive numbers after caret to superscript with jquery?

This question is related to How to convert numbers after caret to superscript with jquery where I got a very good answer from fencliff. Problem now, I need to extend the recent script | jsfiddle so ...
0
votes
1answer
90 views

How to convert numbers after caret to superscript with jquery

A lot of users on our maths forum enter n-th power with caret symbol, e.g. x^(4y). We would like to replace the caret symbol and use superscript instead, wrapping the numbers and variables right ...
1
vote
1answer
49 views

jqplot - superscript in axis label

As the title says how do I add superscript fonts to the axis labels in a jqplot graph? I tried using Javascript sup() function and also actual html tags for the titles of the axes but to no vain. ...
0
votes
3answers
226 views

How to store superscript in XML attribute and read using XSL?

I have a requirement where I need create an XML document dynamically. Some of the attributes of the nodes of this XML contain superscript Reg etc. My question is how should I store such superscript ...
0
votes
1answer
108 views

How to display superscripted text in MS Chart?

I'm building charts in my application using System.Web.UI.DataVisualization.Charting. I need certain text elements, such as Legends, to contain superscripted text. How can I do this? So far I've ...
5
votes
1answer
199 views

Inserting Superscript Numbers in MS SQL

Trying to insert a value into a varchar data field with the Superscript number of 4 (power of 4) at the end. I'm able to insert/update values using superscript 2 and 3 (ie squared and cubed), but I ...
0
votes
0answers
78 views

Is there anything wrong with this HTML using the sup tag and CSS?

I'm having trouble with this HTML in IE8 CO at a customer site, but not on my XP IE8 VM. However, I have managed to reproduce the problem in IETester and have tracked it down to a vertical-align: ...
3
votes
1answer
173 views

Wrong rendering of <sup> in table with valign=top in Chrome and Safari

I have the following HTML: <p style="font-family:Verdana">test<sup>2</sup></p> <p style="font-family:Verdana;vertical-align:top">test<sup>2</sup></p> ...
0
votes
4answers
120 views

How to apply subscript to alphabets in html combo box

i am trying to apply a subscript for an alphabet in option tag of an html select combo box. For numbers i found a solution by substituting it with some unicodes, but nothing found for alphabets. i ...
1
vote
1answer
491 views

Excel VBA: Retaining superscript formatting on on .PasteSpecial

I am copying a range from one workbook to another. As much of the data in the source range is a formula I need to paste by value: With TargetRange .PasteSpecial Paste:=xlPasteAll ...
0
votes
1answer
280 views

Formatting NSString for superscript and subscript

I am writing a utility app for some coworkers. The app is essentially a custom notepad, with buttons that represent the shorthand they use to transcribe a task. All of the buttons add a string to ...
1
vote
0answers
93 views

How do i remove the Space between a superscript and Text when using the Latex -Notation? [closed]

I have the problem that when i use Latex in my Matplotlib to superscript a Number in a title it gets a space and appears like this: I would like to have the superscripted 1 appear directly next to ...
1
vote
0answers
26 views

I keep having superscript in my atristeer template

I'm trying to make a template for my blog with artisteer. Now in my design i keep seeing a superscript and subscript line and they are above the normal text. Any idea what i should and shouldn't do?
1
vote
0answers
121 views

Access 2010 Superscript, Subscript, and Math Notations [closed]

I am creating an Access 2010 database to read rich text files full of math questions. I have the necessary fields in rich text, but rich text does not seem to support superscript, subscript, and ...
5
votes
1answer
278 views

Superscript character in PHP causing a MySQLi select query to find 0 rows

I am using PHP 5.3.3 and MySQL 5.1.61. The column in question is using UTF-8 encoding and the PHP file is encoded in UTF-8 without BOM. When doing a MySQLi query with a ² character in SQLyog on ...
6
votes
2answers
170 views

Accessibility of using <sup> to indicate powers (such as 4^2)?

Is using the <sup> tag the proper way to indicate powers? In a screen reader, wouldn't 3<sup>2</sup> just read as three-two or thirty-two? It seems like there has to be a more ...
1
vote
1answer
300 views

replace the date with macro in word 2007/ replace part of number with superscript

I. I need help to replace the format of the date in some doc files. I have hundred s of pages in which i make a replace for different dates in romanian, actually i need to replace only the slash ...
0
votes
0answers
237 views

superscript and subscript in HTML “textfield”

How to copy and past a text containing superscript and subscript into a textFiled or textArea or textBox and send the same string with no change (i.e.), those superscript and subscript should remain ...
-1
votes
2answers
421 views

Superscript ® in Title bar

I need to insert the ® character as a superscript into the title bar of an app for the iPad. How can this be done in XCode?
0
votes
0answers
214 views

sup tag usage in anchor tag not working in ie,firefox

<a href="#" style="color:rgb(0,176,240);">Parent/Teacher Conference for Mrs. Smith's 2 <sup style="text-decoration:none;">nd</sup> Grade Class</a> i have a statement above ...
0
votes
1answer
91 views

Superscript layout in android

I am on making a widget layout, I need to display superscript type thing like , like PM displaying in this picture, I am thinking if there is any tool which acts like superscript. Will appreciate your ...
0
votes
1answer
103 views

MathML - left subscript and superscript

How to write left subscript and superscript preserving correct syntax of MathML? I mean something like this: Thanks for the hints.
0
votes
1answer
2k views

superscript characters in string IOS

My app in xcode has a tableview with some product data. One of my products have a superscript e in its name. How can I use superscript characters in a string like: texte I can get it to work with ...
3
votes
2answers
247 views

Can I use the $string number_format line to superscript my decimals?

I would like to make the decimals in the following string display as superscript: $string .= number_format(round($value, (int)$decimal_place), (int)$decimal_place, $decimal_point, $thousand_point); ...
0
votes
1answer
354 views

How to apply SuperScript to BoundField in asp.net

How to apply SuperScript to BoundField. script is like <fieldSet .. .. <asp:GridView... .. <Columns> **<asp:BoundField DataField="Price" ...
0
votes
2answers
138 views

Any font does superscripting without requiring the inclusion of “sup” tags?

I have a dynamic list of names which includes some superscript keywords like "®". I don't want to use tag to superscript "TM" or "Registered" etc. Is there any font available which does this ...
1
vote
1answer
376 views

How to superscript in PHP only two decimals after the dot

I have this code: <?php echo $price; ?> which gives me this result: 1,500.99 This code works like a charm to superscript the numbers after the dot: $parts = explode('.', $price); echo ...
0
votes
4answers
620 views

How to make the decimals superscript, or subscript, in PHP?

I have this code: <?php echo $price; ?> which gives me this result: 1,500.99 Is there any way I can make the decimals superscript or subscript? Thanks. EDIT: This code works like a charm ...
1
vote
2answers
411 views

TextView Superscript not showing correctly

I'm using the code found: Subscript and Superscript a String in Android in the first answer, but concatenating that from a previous string, so my code looks similar to: TextView text = (TextView) ...
2
votes
0answers
205 views

How to use superscript in XML for android, without using java

How do I add superscript to a TextView in XML for android in the xml document itself? Every answer I've seen requires you to set it in java. I've tried using the html tags in both the strings.xml and ...
1
vote
1answer
214 views

Problems with superscript using Python tkinter canvas

I am trying to use canvas.create_text(...) to add text to a drawing. I have been somewhat successful using unicode in the following way: mytext = u'U\u2076' #U^6 canvas.create_text(xPos,yPos,text = ...
0
votes
1answer
71 views

Create super script for textView

I want to create super script for desired text selected by user. I found codes for creating super script like: \u1d50\u1d43\u02b2 for maj \u1d50\u2071\u207f for min Is there any other way to ...
0
votes
0answers
73 views

How to decode superscript in .net

I have a value in oracle pl/sql like column rate = $100/$400³. While showing in .net it is showing as $100/$400³, while updating any column other than $100/$400³ , it is getting stored in DB as ...
1
vote
2answers
230 views

Recognizing superscript characters using OCR

I've started a simple project in which it must get an image containing text with superscripts and then by using OCR (currently I'm using tesseract) it has to recognize the superscript characters + the ...
2
votes
1answer
366 views

Replace Unicode numeral subscript or superscript with plain numeral

How do I replace a Unicode numeral subscript or superscript (eg, ₂) with the corresponding numeral (ie, 2) using regular expressions? I can of course replace each of them separately, but that is ten ...
2
votes
2answers
827 views

Tesseract-OCR training problems

I follow the steps in this tutorial http://code.google.com/p/tesseract-ocr/wiki/TrainingTesseract3 and gives me error on the part mftraining-F-U font_properties unicharset nobatch.tr The error I get ...
2
votes
3answers
881 views

Simple text formatting, such as superscript, in Java? [duplicate]

Possible Duplicate: How do I write superscript word for checkbox text in java? So I have this very simple program that basically consists of a GUI with a few text fields and a button. The ...
0
votes
1answer
423 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" ...
3
votes
1answer
452 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 ...
0
votes
1answer
168 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, ...

1 2