LaTeX offers a wide range of arrows for mathematical formulas: implications, mappings, limits and more. All are used in math mode.
Simple arrows
| Command | Symbol | Name |
|---|---|---|
\rightarrow ou \to | → | Vers la droite |
\leftarrow | ← | Vers la gauche |
\leftrightarrow | ↔ | Bidirectionnelle |
\uparrow | ↑ | Vers le haut |
\downarrow | ↓ | Vers le bas |
\mapsto | ↦ | Application (f : x mapsto y) |
Double arrows (implications)
| Command | Symbol | Usage |
|---|---|---|
\Rightarrow | ⇒ | Implication |
\Leftarrow | ⇐ | Implication inverse |
\Leftrightarrow | ⇔ | Équivalence |
\implies | ⟹ | Implication (espacée) |
\iff | ⟺ | Équivalence (espacée) |
Examples in context
LaTeX
% Implication logique
$x > 0 \implies x^2 > 0$
% Équivalence
$x^2 = 4 \iff x = 2 \text{ ou } x = -2$
% Application
$f : \mathbb{R} \to \mathbb{R}, \quad x \mapsto x^2$
% Limite
$f(x) \xrightarrow[x \to +\infty]{} 0$