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
3 answers

Are there any differences between this 4 html elements?

Can I clarify that these 4 elements below actually do the same job by rendering the text in italic and there is no difference in using each of them except to differentiate the type of content?
realervz
  • 13
  • 3
1
vote
1 answer

How to disable italics font in python when defined xlabel or ylabel using subscript

import matplotlib.pyplot as plt plt.plot() plt.xlabel(r'Production$_{world}$') As shown in image red frame, the word 'World' I don't want it to be italicized.
AskNature
  • 85
  • 1
  • 7
1
vote
1 answer

SwiftUI Font smallCaps() not working with italic()

extension Font { public static let Heading1: Font = system(size: 34, weight: .black, design: .default) .smallCaps() .italic() } I can make the font all caps OR italic - but not both. Anybody know how to get around…
Dan
  • 543
  • 2
  • 13
1
vote
1 answer

How to italicize just gene names in my heatmap (using R)?

I am doing a heatmap in R (gplots) and I would like to italicize just my gene names (in my example - gene1, gene2 and gene3). For example: df <- data.frame(Gene = c ("gene1", "gene2", "gene3"), value = c(3, 2, 2.5), time =…
Alex
  • 355
  • 1
  • 7
  • 20
1
vote
1 answer

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 want (Desyrel) only exists in a single .ttf file. I…
chris
  • 13
  • 1
  • 3
1
vote
1 answer

How can I italicize the resulting text from an Entry widget in tkinter?

So an Entry widget's text can be retrieved using the .get method but my question is: Can you italicize the text that .get receives from the widget? Adding the font parameter to the Entry only changes the text displayed in the Entry and not its…
1
vote
1 answer

Matplotlib Italic in portion of axes labels - applied to default font but not specified font

I want all text in my plots to be Times New Roman, so I did the following: import matplotlib.pyplot as plt plt.rcParams["font.family"] = "Times New Roman" # change default font and I only want the '(x)' and '(z)' portions of my labels to be…
Andrea
  • 607
  • 8
  • 21
1
vote
1 answer

formatting text in table with formattable() in R

I have trouble formatting the text of my table using formattable(). My wish is to have the second column (Species (Scientific)) in Italics. I have tried the code below, but nothing happened (the table appeared in the graph window but no italics nor…
Andrea
  • 41
  • 8
1
vote
0 answers

Partly italic label in geom_text in ggplot2

I want to include a partly italic text (*p=*0.x) into my graph using geom_text. I found this solution How do I include italic text in geom_text_repel or geom_text labels for ggplot? I tried this: geom_text(parse=TRUE, aes(x=2, y = 104,…
Mi Bumak
  • 11
  • 1
  • 3
1
vote
3 answers

Jupyter / IPython Notebook text editing as markdown

Hi all I'm starting a new Python 3 document in Jupyter, and when I tried to put the test in the center in a markdown, I put:

Whatever Report

Based on the data from *January 1, 2018*
As you can see I…
rhea.rao
  • 65
  • 7
1
vote
1 answer

Italic text in Arabic - JavaFX

I have a problem making the text italic to the Arabic texts, It does not work, I also tried different types of fonts, but none of them works, Here is the code: import javafx.application.Application; import javafx.scene.Scene; import…
1
vote
0 answers

How to draw italic text with PIL/ImageDraw?

I want to draw italic text with PIL/ImageDraw. Someone says use italic fonts, but my font is just only one ttf file. No italic font file. fontName = 'malgun.ttf' # One of Korean fonts. fontSize = 25 imgMode = 'RGBA' fillColor = (0, 0,…
snoman
  • 85
  • 8
1
vote
1 answer

Excel VBA: Copy and paste duplicate values based on font format

I have an Excel format that looks like this: What I need is a VBA code in Excel that will read all the data in column A and look for any text in italic format then check if it has a duplicate data on the same column. If yes, that data will be…
1
vote
1 answer

How do I make tag i WCAG 2.0 compatible?

I'm using Semantic-UI framework and for the icons I have to use the i tag. Here is an example: I want to make my code compliant to WCAG 2.0 (level AA) and I'm using AChecker validator. For every line that contains i tag…
smartmouse
  • 13,912
  • 34
  • 100
  • 166
1
vote
0 answers

Italic in td html tcpdf

I use tcpdf using custom font named ProximaNova. I have converted to tcpdf font become 4 fields php proxima.php,proximai.php,proximab.php and proximabi.php I call font TCPDF_FONTS::addTTFfont('tcpdf/fonts/font-ttf/proxima.ttf', 'TrueTypeUnicode',…