Questions tagged [italic]

italic type is a cursive font.

Italic can be used for example to put Emphasis on a word.

The HTML tag is <i></i>.

150 questions
2
votes
2 answers

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 bold or change the color or set the background color…
Michael
  • 21
  • 2
2
votes
2 answers

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 consecutive double underscores should be italicized,…
qsmith
  • 23
  • 1
  • 3
2
votes
2 answers

Xamarin.Forms - DisplayAlert with Italic font attribute

I need to display an alert with some part of the message in italics and the other part normal, something like this: var title = "Title"; var body = "This part in Italic. This part normal."; Application.Current.MainPage.DisplayAlert(title, body,…
Cesar Tomatis
  • 598
  • 1
  • 4
  • 15
2
votes
1 answer

How can use the default function " toggleBoldface(sender: AnyObject>)" and toggleItalics() in swift

I have two buttons Bold and italic.And 3 lables.Need to do normal bold and italic functionality.I done with manually using UIFont(name: "Helvetica-Oblique", size: 18).But it makes hard to me. Is there any way to using the default funcions "…
Lydia
  • 2,017
  • 2
  • 18
  • 34
2
votes
3 answers

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 NSAffineTransform by doing the following: NSFont *theFont = [NSFont…
ericg
  • 8,413
  • 9
  • 43
  • 77
2
votes
1 answer

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 simultaneously: Font font = new…
javaAndBeyond
  • 520
  • 1
  • 9
  • 26
2
votes
1 answer

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); View on jsFiddle Firefox Chrome Any ideas how to…
Antony
  • 14,900
  • 10
  • 46
  • 74
2
votes
1 answer

AS3 Font Embedding with htmlText

I have a dynamic textfield which uses html text loaded form an XML file: XML: some text.]]> As you can see, this uses regular and italic. I have embedded my font in all it's varieties, every single glyph,…
mrEmpty
  • 841
  • 4
  • 19
  • 36
1
vote
3 answers

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 insert a text using my function just before the text…
Jinu Joseph Daniel
  • 5,864
  • 15
  • 60
  • 90
1
vote
1 answer

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
Mashhadi
  • 3,004
  • 3
  • 46
  • 80
1
vote
1 answer

R: love.plot() italicize variable name

I created a love plot to show covariate balance of the propensity score matched results. I'd like to italicize names of bacteria e.g. E.coli instead E.coli, but ** doesn't seem to work. I also tried expression(italic()) to no avail. Any…
Tim
  • 81
  • 6
1
vote
1 answer

How to make only lower case characters italic in a mixed string

This question raised by trying to solve this one How to write partial string of X labels in italics using ggplot2?: I want to know how we could only italicize characters in a string that are lower case: string <- "wbfV/wcvB" [1] "wbfV/wcvB" Desired…
TarJae
  • 72,363
  • 6
  • 19
  • 66
1
vote
1 answer

Remove italics (# comments) in Rmarkdown code chunks in pdf

I am looking to find a way to remove the italicized comments in Rmarkdown code chunks --- output: pdf_document: keep_tex: true number_section: no --- ```{r} # This is a test. ``` And the results. Is there a way to make it not…
POC
  • 268
  • 1
  • 2
  • 7
1
vote
2 answers

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?
Patrick Mahoney
  • 555
  • 7
  • 19
1
vote
1 answer

Quill editor italic text is red

I am using Quill editor with snow theme, according to the theme playground the italic text should be black and not red, yet when i use it the text color is red. My code: const editor = new Quill('#editor', { theme: 'snow' }); I also…