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
0
votes
1 answer

Regex for italic markdown

I'm trying for hours with regex: I need a regex to select all that is inside underlines. Example: \_italic\_ But with the only condition that I need it to ignore \\_ (backslash followed by underscore). So, this would be a match (all the text which…
0
votes
1 answer

How can i add differents styles to differents part of a line in HTML and print everything together?

I want to add different styles to differents parts of a line in HTML and then print that line together. Imagine i have the next line: Hello my name is Bogdan and i live in Spain. I managed to add different styles to the line, but i can't manage to…
0
votes
2 answers

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 is rather cut from its right side. What can be…
Hayri Uğur Koltuk
  • 2,970
  • 4
  • 31
  • 60
0
votes
1 answer

Xamarin form Label can't display Chinese characters in italic

I'm new to Xamarin and was testing Xamarin features. Below is an excerpt from my toy application. As you can see, I tried in two ways to display some Chinese characters in italic.
0
votes
1 answer

How to keep text formatting in HTML Input Form?

I have an input field in the html form. When I paste a text in that field, I don't want the text's bold, underline and italic attribute to be lost. I want to use the style info too in the backend. So how do I exactly go about preserving the style…
n0obcoder
  • 649
  • 8
  • 24
0
votes
2 answers

Recover information XML with XSLT in italic

I want to recover proper names (name) of an XML through XSLT, but under condition that whatever is in ex is printed in italics. This is the XML:
Miguel LH
  • 15
  • 3
0
votes
2 answers

Upright shape of font for text inside tags in HTML

The text inside HTML tag pair becomes italic. Is it a way to make a part of it non-italic, revert an upright shape of font? Something like \textup command in LaTeX: Long italic text small upright part italic text…
Constructor
  • 7,273
  • 2
  • 24
  • 66
0
votes
1 answer

Italic and color in an R flextable

I have a table containing the presence (+) of species (lines) according to years (columns). The idea is to italicize the Latin name of each species and to color the lines according to a certain characteristic of the species. Unfortunately, I can't…
0
votes
1 answer

How to italicise part of correlation coefficient annotation in ggplot2

I cannot figure out how the make the letter "R" in the annotate() function below italicised on my plot. I've tried adding in expression() before paste(), and using italic(), but that then pastes the section starting "round(cor..." as text, rather…
0
votes
0 answers

How to italicize specific words in a legend and axis title in ggplot2?

I am using ggplot2. I have species names in my legend and axis title. I found a way to italicize the an entire group: theme(legend.position="right", axis.text.y = element_text(face = "italic")) but I need to know how to pick and choose which words…
0
votes
1 answer

Same font-style than comment in Visual Code

im using Operator Mono Currently my comments are in italics. How can I make all my code in italic too? Thanks :)
haestan
  • 93
  • 10
0
votes
1 answer

Setting italic in RichtText

I am displaying richtext on my web page. and have added an italic text, but it does no show as italic, just normal text. when I look in developer tool it looks like the xsp.css is setting font-style to inherit but I can't decide what it inherits…
Thomas Adrian
  • 3,543
  • 6
  • 32
  • 62
0
votes
1 answer

HTML text style shortcuts functioning within Github repository file edits?

I am just starting to learn Javascript, and I have a small question about editing files within a Github repository. I am writing functions within a file in my repository that involve mathematical equations, and I am finding that within the editor…
0
votes
0 answers

Matplotlib: Italic style in regular font

I am trying to write a text in the plot in italic. Although I want the style to be italic, I want to keep the font to be the regular font. This is what I did. import matplotlib.pyplot as plt fig = plt.figure() ax =…
owl
  • 1,841
  • 6
  • 20
  • 30
0
votes
1 answer

iTextSharp angle of text

I have a little problem with my application. I want to add a text to a PDF but with a little special thing. The text has to be italic, but the angle of italic is too high! Italic has a angle of 11 degrees but I need 10 degrees! I don't know how…