TypeThem
Concept · Guide

Latex Symbol Reference

Updated 17 Aug 2026 · by SKK · 2 platforms covered
1-minute answer

LaTeX represents math symbols with backslash commands inside math mode ($...$) — for example \sum for ∑ and \alpha for α.

01 Step by step, per platform

A real, followable procedure for every platform — not a thin restatement of the shortcut.

Common commands

  1. \pm → ±, \times → ×, \div → ÷.
  2. \leq / \geq → ≤ / ≥, \neq → ≠.
  3. \sum → ∑, \int → ∫, \infty → ∞.
  4. Greek letters: \alpha \beta \gamma \pi \theta \omega, etc — lowercase command gives lowercase letter, capitalized command (\Omega) gives the capital.

Using them

  1. Must be inside math mode: $\sum_{i=1}^{n} x_i$.
  2. Outside math mode, these commands either error or do nothing.

02 FAQ

Can I just paste the Unicode character (∑) instead of \sum?

In modern LaTeX with the unicode-math package, yes. In classic LaTeX, no — stick to the backslash commands for portability.

Copied to clipboard