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
1
vote
1 answer

How can I specify font as 'Italic' using NPOI 2.2.1.0?

I want to create my own style for cell in Ecxel document. I need cell text to be displayed as 'Italic' like this 'blablabla'. How can I do it? I tried something like this: wb = new XSSFWorkbook(stream); var font =…
monstr
  • 1,680
  • 1
  • 25
  • 44
1
vote
1 answer

How to use a highlighter in JTextArea

I have this notebook class that I have been working on. I have two problems that I'm facing right now: 1: Bold and Italicize specific text I have two icons in my toolbar that make the text bolded or italicized when you click on it. All of that works…
Connor Bailey
  • 69
  • 1
  • 13
1
vote
1 answer

R italic partial title

a want to plot some graphs from for loop, where the main should be half italic and half normal. The code example should be a1<-1:20 a2<-sample(a1) b1<-sample(a1) b2<-sample(a1) a<-list(a1, a2) b<-list(b1, b2) v<-c("a", "b") for(i in 1:2){ …
Bobesh
  • 1,157
  • 2
  • 15
  • 30
1
vote
0 answers

R: italicizing a variable

I'm making plots in R, and I want my title to show the species name in italics (e.g. Sterna hirundo) when I run a loop. This is the code I've tried to use. title(expression(italic(specieslist[i]))) All this does is print specieslist[i]. How can I…
1
vote
1 answer

Make Specific word italic in javafx label

I would like to make one particular word in my Label italic but i cant find any solutions, ive looked everywhere and tryed so many different ways. Label reference = new Label(lastNameText + ", " + firstNameText + ". (" + yearText + "). " …
RhysBuddy
  • 125
  • 3
  • 11
1
vote
1 answer

using italic Arial (embedded) in FPDI

I'm trying to output a pdf file with an italic text in Arial and using FPDI for that. Since the arial.php and the arialbd.php (bold) are already existing, it's working fine. Now I found a ariali.ttf on the internet, which looks good when I open the…
alexandre
  • 286
  • 3
  • 17
1
vote
1 answer

Legend title in italic from a vector of names

I have a vector with different species names. For example: sp_names<-c("sp1","sp2","sp3") I have to make a map for each species and I need each species name written in italic in the title of the legend. Searching on the stackoverflow I found a…
Tiago
  • 143
  • 1
  • 2
  • 7
1
vote
1 answer

Using italics in the title on an object from a dataframe

I want to plot names that come from a dataframe in italic as a ylab. The solution at R plot: Using italics and a variable in a title does not work in this case. Using substitute or expression R literally reads my code e.g. substitute (paste…
AEM
  • 919
  • 1
  • 9
  • 22
1
vote
0 answers

rtf discrepency in italic (wordpad/msword)

i'm trying to figure this out for a few weeks, and i think i may have boiled down the problem for now the issue is only in Hebrew text (though ill use Latin chars for simplicity) if i have in a wpf richtextbox p*q* (the q is italic) and then…
Yisroel M. Olewski
  • 1,560
  • 3
  • 25
  • 41
1
vote
1 answer

AWT Graphics DrawString results into incorrect width for Italic - Oblique Fonts

I have the below program to print a sentence string by string in java awt : package awt; import java.awt.Font; import java.awt.FontMetrics; import java.awt.Graphics; import java.awt.Graphics2D; import java.awt.Image; import…
1
vote
3 answers

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:
user2204367
  • 145
  • 3
  • 3
  • 16
1
vote
1 answer

javascript: find/replace regexp help - bold, italic and specific characters

the HTML/concept: I regularly have to convert docs into html for clients, and I'm tired of having to find/replace +…
Nick Briz
  • 1,917
  • 3
  • 20
  • 34
0
votes
1 answer

Italic font in one scale label in ggplot

I want to put one label of x axis with italics font with this code: scale_x_discrete(labels = c("factor1", "factor2"))+ But it doesn't work. Do I need to install some package? Is there an alternative way to do so?
0
votes
1 answer

How to write a partial word of a bold label in italic? R bquote

I would like to change the labels of my graph. ChatGPT etc. gave me this useful command: x_labels <- c( bquote(bold("Arabisch gelesen, " ~ italic("Weiß"))), bquote(bold("Schwarz, " ~ italic("Weiß"))) ) To make the text "Weiß" also in bold, it…
0
votes
1 answer

`Gmisc` package: how to add italic to only part of text using the `glue` package?

Using the Gmisc package, how can I add italic to only part of text using the glue package? See the reprex below for details: library(Gmisc, quietly = TRUE) library(grid) grid.newpage() txt <- "Just a plain box" boxGrob(txt) grid.newpage() txt <-…
rempsyc
  • 785
  • 5
  • 24