Return to the current

Bold and italic text - Latex

This article introduces a way to make bold and italic text with Latex.

ENFR

Explore the notation in LatexDB

Bold text

In latex, to display a bold text, it is possible to use the command \textbf{}.

\textbf{bold text}

This gives : bold text\textbf{bold text}

Italic text

In latex, to display an italic text, it is possible to use the command \textit{}.

\textit{italic text}

This gives : italic text\textit{italic text}

It is possible to combine the two commands to get an italic and bold text. \textbf{\textit{italic and bold text}} This gives : italic and bold text\textbf{\textit{italic and bold text}}