Italic Text in LaTeX

Use \textit{} or \emph{} for italic text in LaTeX.

Quick Answer

latex
This is \textit{italic text} in LaTeX.

The \textit Command

\textit{} switches the font to its italic variant regardless of context. The text inside the braces will always be italic.

latex
\documentclass{article}
\begin{document}

This is normal text, and \textit{this part is italic}.

\end{document}

Writing your thesis in LaTeX?

MonsterWriter's LaTeX Workspace gives you real-time PDF preview with no compile limits — at a fraction of Overleaf's price. Works just like Overleaf, costs 11× less.

Try MonsterWriter free

\emph vs \textit

\emph{} is semantically smarter: it toggles italic. If you use it inside already-italic text, it switches back to upright — the correct behaviour for emphasis in most contexts.

latex
This is \emph{emphasized} text.

\textit{In italic context, \emph{this} reverts to upright.}

Prefer \emph for emphasis and \textit when you specifically want the italic shape (e.g., titles, technical terms).

Italic in Math Mode

Math mode automatically italicises variables. For upright text inside equations use \mathrm{}, and for italic text labels use \mathit{}.

latex
\begin{equation}
  v = \mathit{velocity}     % italic text in math
\end{equation}

\begin{equation}
  F = m \cdot \mathrm{a}   % upright text in math
\end{equation}

Combining with Bold

latex
\textbf{\textit{Bold italic text}}

% Or use 	extbf and emph together
\textbf{\emph{Also bold italic}}

Related Topics