Questions tagged [italic]

{italic} is specifically about making document elements italic (or removing this font attribute). For questions about {italic-correction}, use the tag of the same name. For general questions about formatting document elements, use {formatting} instead.

is specifically about making document elements italic (or removing this font attribute). For questions about , use the tag of the same name. For general questions about formatting document elements, use instead.

There are several different ways to get italic or italic-like text in LaTeX; see this question for discussion on when to use the different italic commands.

  • Italic is the default for roman letters in math.
  • To italicize text, one can use \textit{...}.
  • LaTeX also provides slanted text with \textsl{...}; rather than providing the differently shaped italic characters, slanted characters lean over to the right. See this answer for a discussion about the differences between italic and slanted text.
  • To use italics for emphasis, use \emph{...}. This behaves better inside other environments (e.g. an \emph inside an \emph switches back to roman).
  • The \itshape command switches italics on, which is useful for defining formatting, e.g. when using the package. The analogue for slanted text is \slshape.
  • \it is deprecated; don't use it.

Frequently Asked Questions

513 questions
28
votes
2 answers

Make block of text italicized

I'm working on a book using the book document class. I have several portions of text that I want to be italicized, each of which are several paragraphs long. I was only able to replicate the issue by using line breaks. Here's my…
dantiston
  • 1,079
12
votes
2 answers

How do you get a non-italic pound sign? (£)

How do you get a non-italic pound sign? (£)
Daniel
  • 121
6
votes
2 answers

breve under letter is not in italics when using \textit

Because the beginning of the letter is moved a bit to the left when in italics mode, the breve also needs to move to the left,otherwise it is no longer under the letter. \documentclass{article} \usepackage{semtrans} \begin{document} Right position:…
arved
  • 296
5
votes
1 answer

Warning/Error While using textit

This refers to previous question. Alternative to textit in LaTeX I am using textit for making text italic. \documentclass[11pt,table,a5paper]{article} \begin{document} \textit{\textbf{Some Text}~\\ This gene encodes the pro-alpha1 chains of…
manish
  • 9,111
4
votes
2 answers

Make commas not italicized inside a macro using textit

I'm trying to set up a shortcut for writing semantic types. These are usually written inside $\langle$ and $\rangle$ delimiters, with italicized letters standing for each type and commas separating these. They should look something like this: I've…
Jigsaw
  • 935
3
votes
1 answer

Alternative to textit in LaTeX

I have one text that need to be italicized. \textit{some text2 ~\\ some text2} But i found ~\\ converted to \newline\. Is there any alternative to \textit? Is there any alternative to \it?
manish
  • 9,111
2
votes
1 answer

How to italicise multiple words but not the commas between them?

For example, I have this sentence: GeneA, GeneB, and GeneC have been found to have a role in RNA metabolism. This is what I would like, format-wise: GeneA, GeneB, and GeneC have been found to have a role in RNA metabolism. I can achieve this…
2
votes
1 answer

Plain text in italics

I am writing a lemma in math which is the following using the italics parameter \textit but need to insert plain text that isn't italicized in the lemma. I can't just delete the \textit around my math lemma or else the lemma won't be in italics.
1
vote
0 answers

How to have subfont and without italic?

How to avoid italic for "th"? in the early 20$^{th}$ century How to avoid italic font and just "20th"?
aan
  • 2,663
1
vote
1 answer

Make words in wordlist in italic font in the rest of the document

Whenever words as 'Varicer', 'Lobuli', 'Haptocytter', 'Fibrose' is used in the document after the wordlist, they should be in italic font, is there a way to make a function with starting point in…
1
vote
0 answers

All text appearing in italics in PDF output

Suddenly, all my text that should be normal text form is appearing as italics text in my PDF. How to resolve this issue. Thanks in advance.
Irfee
  • 21
0
votes
1 answer

Introductory and except theroms and lemmas... part others getting Italized

I have tried to see what is that code which is italicized the introductory part of second chapter and whatever I am writing except lemma, propositions etc as shown in pictures. But in chapter 0 everything seems good they are not getting…
0
votes
0 answers

Why is italicise not working in the overleaf code-\emph not working here

I have written the following markup: %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %% Title: SOP LaTeX Template %% Author: Soonho Kong / soonhok@cs.cmu.edu %% Created:…
0
votes
1 answer

How to use itshape for different fonts

The result of \itshape or \textit{} is the italics of the main font in our document. If I have other fonts set for different environments, I could access their italics by the use of \fooitalics via a definition of…
Kumar
  • 25
  • 4
0
votes
1 answer

New command to turn to italics

I'd like to create a command that will turn all of the text that follows into italics, but something isn't working. Where am I going wrong? p.s.: I know I could do it differently, but it's important that it's really a…
Andy Toff
  • 105
1
2