The italic tag has no wiki summary.
5
votes
4answers
3k views
iOS: Bold and Italic on the same word
Background: I have been trying to display a sentence with Bold and Italic font as well as normal ones.
Question: How can I display something like this "Hello, my name is Byte". Notice that Byte is ...
0
votes
1answer
41 views
How do I get my text to be both bold and italic in iText?
I am trying to make my text both bold and italic at the same time for a paragraph in a PDF document using iText.
I can use either of these for bold and italic respectively, but not both ...
0
votes
2answers
207 views
HTML/CSS when hover link with style italic other links stay stable
I have a little problem when i hover menu link other links shift to sideways, but i need that my other links would stay stable. How can i fix that?
HTML:
<div id="top">
<a ...
0
votes
1answer
213 views
Italic text not working on Samsung Galaxy Tab
I don't why but my application doesn't show the TextView in italic on the Samsung Galaxy Tab 2 (while it is working correctly on a Nexus 7 tablet for instance).
My code :
<style ...
0
votes
1answer
390 views
UIButton + italic font = clipping
The problem is that UIButton clips title tail (for about 1-2 pixels at the end) when I use italic font like Helvetica Oblique with size bigger than 13. Does anybody know a solution for this problem?
2
votes
2answers
1k views
Custom font sometimes renders in italics in IE8 / IE7
In IE7 and IE8, when using a custom web font, text is sometimes rendered in italics, even when I explicitly set font-style: normal. The issue is sporadic - it will render fine a few times, then I ...
2
votes
1answer
140 views
Cannot draw italic text in Firefox canvas
When drawing italicized text in canvas, Firefox would render them as normal for fonts like Impact.
var ctx = canvas.getContext('2d');
ctx.font = "italic 40px Impact";
ctx.fillText("Impact", 0, 40);
...
5
votes
5answers
207 views
Italicize Text Backward?
I would like to italicize text backwards or the the left the opposite way of this current text. Is this possible to do in HTML/CSS or even with Javascript/jQuery?
8
votes
3answers
960 views
Samsung devices supporting setTypeface(Typeface.Italic)?
I have in application that makes use of a custom View component that drawas some text onto the screen via Paint/Canvas.
I am using the following code (before I call canvas.drawText()) to make my text ...
0
votes
4answers
318 views
Set Edittexts hint text style as italic
I need to set the hint of a EditText as italic style, but I can't find any place how to do it.
Some one here has a clue how to do it or do I have to accept that is impossible?
1
vote
3answers
2k views
How do I get Lucida Grande italic into my application?
Unfortunately, Lucida Grande does not have an italic variant and I need one.
My options here seem limited and I am hoping someone has a better one for me.
First, I tried, applying a ...
5
votes
4answers
62 views
What is the proper use case for html <i> element? [duplicate]
At first this question seem simple, from all the real life examples I have seen, is used for displaying icons. For example the twitter bootstrap icons.
However, when I search tag in google, the w3c ...
-1
votes
3answers
5k views
Enable “run command prompt” shortcut in Ubuntu
In Ubuntu System Settings >> Keyboard >> Shortcuts I can't enable the "run command prompt" shortcut neither the "show the activities overview" shortcut.
They are both in italics, unlike all other ...
16
votes
6answers
3k views
Italic TextView with wrap_contents seems to clip the text at right edge
<TextView android:id="@+id/prodLbl"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
...
0
votes
0answers
91 views
How to set richtextbox text style to italic in linux mono
I am using a RichTextBox control to show pieces of text with a header, a body and a footer.
Each part of the text has its own formatting (font, size, color, style, and so on), so the richness is ...
0
votes
2answers
538 views
Graphviz dot - Italic text in HTML table is non-italic
I'm using dot version 2.26.3
The following .dot contents:
digraph html {
results [shape=none, margin=0, label=<
<TABLE BORDER="0" CELLBORDER="1" CELLSPACING="0" CELLPADDING="4">
...
1
vote
2answers
39 views
In Markdown, how to format italicized text in a quotation?
In Markdown, how to format italicized text in a quotation?
*italicized text*
doesn't work.
1
vote
1answer
783 views
AS3 Font Embedding with htmlText
I have a dynamic textfield which uses html text loaded form an XML file:
XML:
<someText><![CDATA[I am <i>some</i> text.]]></someText>
As you can see, this uses ...
1
vote
1answer
261 views
javascript: find/replace regexp help - bold, italic and specific characters
the HTML/concept:
<textarea id="input"></textarea>
<button onclick="format()">submit</button>
<textarea id="output"></textarea>
I regularly ...
1
vote
3answers
5k views
Android Paint.setTypeface isn't working for italic
The Paint.setTypeface is not working for italic or I'm doing something the wrong way. I can create normal, bold, monospace, and serif text, but I can't create italic text. It always looks normal (or ...
2
votes
2answers
308 views
Django Template tag to allow bold and italic elements
Django has a template tag that allows you to remove certain html tags from being displayed in stored data.
The django documentation gives an example. Any b or span tags are removed.
...
1
vote
2answers
675 views
Knowing the text selected using mouse in javascript
I my application i want to make the text seleected selected using mouse bold..How to do this using javascript?
Also how to know the cursor position using javascript...For example ,i may need to ...
2
votes
3answers
469 views
What's the CoreText equivalent to AppKit's NSObliquenessAttributeName?
I'm drawing some text in Mac/iOS cross-platform code using CoreText. I may be using fonts that do not have a real "Italic" version installed in the OS for all users, but they need to be aware that the ...
1
vote
1answer
110 views
Custom font in universal app
Hi guys i am using a custom font in universal application and it is working good on iPhone but on iPad it is showing in Italic. please help me
0
votes
2answers
70 views
Android toast italics
I would like to display a toast in Android. I decided that it would look nice to put one of the words in italics. Is it possible to italicize a specific word for a toast?
0
votes
2answers
169 views
Why some characters aren't completely shown when rendering italic text with Direct X
I am rendering some italic text using ID3DXFont::DrawText. Although i specify DT_NOCLIP and the rectangle is big enough, usually, but not only, last character of the text isn't show completely, but it ...
6
votes
2answers
1k views
Completely disable italic text in GVim
In GVim I'm using a fixedsys-like font which looks good, but with italic text it breaks (chars partially unreadable, especially the last italic one if the next one is regular).
For this reason (and ...
7
votes
2answers
2k views
Changing the font of a Delphi TLabel to Italic chops off the tail - why?
A simple demo of a default TLabel with font set to Arial Regular 16 is shown below.
The code when the button is clicked is:
procedure TForm1.Button1Click(Sender: TObject);
begin
...
1
vote
1answer
845 views
SVG + embedded font: how to display text in italic?
My purpose is to create a self containing vectorial logo in SVG = I want to integrate all the font glyphs inside this SVG file.
For one part of my text I need a special font in italic. The font I ...
3
votes
2answers
205 views
Android ListView Italic
I was wondering if it's possible to get the following output when using ListActivity:
Name - Age
Name - Age
etc.
So name normal and age italic.
I'm currently using the following code:
<?xml ...
1
vote
2answers
916 views
Make a node in a VB6 treeview italic
I'd like be able to make the text on individual nodes in a treeview italic. It sounds simple but I haven't been able to find out how. There is no property on the node that allows it. I can make it ...
3
votes
2answers
2k views
Text editor in Java with sample functions for desktop application
I have a project, I'm creating an application in Java and I need text editor with sample functions (Bold, Italic, Size, Align, Undo, Redo) .
So is there a class in java for this purpose or a tutorial ...
2
votes
2answers
278 views
regex for parsing italic text?
Suppose I have the following text:
__This_is__ a __test__
Using two underscores for denoting italics. So I expect This_is and test to be italicized. The logic dictates that any text between two ...
0
votes
1answer
494 views
Italic not working in XML?
Can anyone explain why all HTML tags are working/rendering in my XML but italic ?
Also, you can't put classes in xml right, I tried that it it didn't seem to recognized any classes.
Sorry getting ...
0
votes
1answer
187 views
What is the easiest way to build a FrameworkElement that has bold and italic markup text?
Is there any more elegant way to do the following?
Basically I need an easy way to programatically build a WrapPanel (or other FrameworkElement) that:
wraps correctly
allows some words to have bold ...


