Bold Text in LaTeX

Use \textbf{} to make text bold in LaTeX.

Quick Answer

latex
This is \textbf{bold text} in LaTeX.

The \textbf Command

The \textbf{} command is the standard way to make text bold in LaTeX. Wrap any text inside the curly braces and it will render in bold weight.

latex
\documentclass{article}
\begin{document}

This is normal text, and \textbf{this part is bold}.

\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

Bold Text in Math Mode

Inside math environments, \textbf doesn't work. Use \mathbf{} instead for upright bold, or load the bm package for bold italic (which preserves the math italic shape).

latex
\usepackage{bm}  % in preamble

\begin{equation}
  \mathbf{F} = m\mathbf{a}        % upright bold
\end{equation}

\begin{equation}
  \bm{\alpha} + \bm{\beta} = \bm{\gamma}  % bold italic
\end{equation}

Bold Across Line Breaks

You can bold text that spans multiple lines. LaTeX treats line breaks inside \textbf as spaces, not paragraph breaks.

latex
\textbf{This is a long bold sentence that
continues on the next line in the source,
but renders as a single paragraph.}

Combining Bold with Other Formatting

latex
\textbf{\textit{Bold and italic text}}  % bold italic
\textbf{\underline{Bold and underlined}}  % bold underline

Related Topics