Learn how to emphasize text in LaTeX using bold, italics, underline, and other formatting options. Complete guide with examples.
\textbf{bold}
, \textit{italic}
, \underline{underline}
\textbf{}
to make text bold:
\textit{}
for italics:
\underline{}
for underlining:
\emph{}
command provides semantic emphasis:
\emph{}
when you want to emphasize meaning. Use \textit{}
when you specifically want italic style.\emph
for emphasis, not just italics\textsc{}
for small caps instead\textbf{text}
not \textbf text
Command | Output | Usage |
---|---|---|
\textbf{text} | text | Bold |
\textit{text} | text | Italic |
\underline{text} | text | Underline |
\emph{text} | text | Emphasis |
\textsc{text} | TEXT | Small caps |
\texttt{text} | text | Monospace |
\textsf{text} | text | Sans serif |
\textsl{text} | text | Slanted |
\textbf{text}
not \textbf text