LaTeX bietet eine breite Palette von Pfeilen für mathematische Formeln: Implikationen, Abbildungen, Grenzwerte und mehr. Alle werden im Mathematikmodus verwendet.
Einfache Pfeile
| Befehl | 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) |
Doppelpfeile (Implikationen)
| Befehl | Symbol | Verwendung |
|---|---|---|
\Rightarrow | ⇒ | Implication |
\Leftarrow | ⇐ | Implication inverse |
\Leftrightarrow | ⇔ | Équivalence |
\implies | ⟹ | Implication (espacée) |
\iff | ⟺ | Équivalence (espacée) |
Beispiele im Kontext
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$