Comment écrire le symbole partie réelle en LateX d’un nombre complexe ? Le réel a est appelé partie réelle du nombre complexe a + ib.

Let $a,b\in \mathbb{R}$ and $z=a+ib \in \mathbb{C}$.

Les parties réelles et imaginaires sont définies comme suit: \(\begin{array}{ccc} a & + & i & b\\ \uparrow & & &\uparrow \\ \Re (z) & & &\Im (z) \\ \text { Real part } & && \text { Imaginary part } \end{array}\)

Symbole partie réelle par défaut

Il est possible d’utiliser la fonction \Re :

$$\Re (z)= \Re(a+ib)=a$$
\[\Re (z)= \Re(a+ib) = a\]

Symbole partie réelle utilisant amsmath et operatorname

Il est possible d’utiliser la fonction \operatorname :

\documentclass[12pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\begin{document}

$$\operatorname{Re}(z)= \operatorname{Re}(a+ib)=a$$

\end{document}
\[\operatorname{Re}(z)= \operatorname{Re}(a+ib)=a\]

Symbole partie imaginaire utilisant amsfonts and mathfrak

Il est possible d’utiliser la fonction \mathfrak:

\documentclass[12pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage{amsfonts}
\begin{document}

$$\mathfrak{Re}(z)= \mathfrak{Re}(a+ib)=a$$

\end{document}
\[\mathfrak{Re}(z)= \mathfrak{Re}(a+ib)=a\]

Comment écrire le symbole partie imaginaire en LateX

Comment écrire le symbole partie imaginaire en LateX d’un nombre complexe ?