Delta Symbol in LaTeX

Use \delta for lowercase δ and \Delta for uppercase Δ — both inside math mode.

Quick Answer

latex
$\delta$   % lowercase δ
$\Delta$   % uppercase Δ

Basic Usage

Delta must always appear inside a math environment. Use dollar signs $...$ for inline or \[...\] for display.

latex
\documentclass{article}
\begin{document}

A small delta $\delta$ and a big delta $\Delta$ in text.

In an equation:
\begin{equation}
  \frac{\Delta y}{\Delta x} \approx \frac{dy}{dx}
\end{equation}

\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

Common Uses in Academic Writing

latex
% Physics: small change in a quantity
$\Delta T = T_2 - T_1$   % change in temperature

% Statistics: Dirac delta function
$\delta(x - x_0)$

% Chemistry: partial charge
$\delta^{+}$ and $\delta^{-}$

% Math: epsilon-delta definition
$|f(x) - L| < \varepsilon$ whenever $0 < |x - a| < \delta$

Delta as an Operator Subscript

latex
$\Delta_{\text{mix}} G$   % change in Gibbs free energy of mixing
$\Delta H_f^\circ$       % standard enthalpy of formation

Quick Reference: Greek Letters

All Greek letters follow the same pattern — lowercase and (where applicable) uppercase:

LettersymLowercase cmdUppercase cmd
Alphaα\alpha
Betaβ\beta
Gammaγ\gamma\Gamma
Deltaδ\delta\Delta
Epsilonε\epsilon
Zetaζ\zeta
Etaη\eta
Thetaθ\theta\Theta
Lambdaλ\lambda\Lambda
Muμ\mu
Piπ\pi\Pi
Sigmaσ\sigma\Sigma
Tauτ\tau
Phiφ\phi\Phi
Chiχ\chi
Psiψ\psi\Psi
Omegaω\omega\Omega

Related Topics