Knowledge base dedicated to Linux and applied mathematics.
Accueil > Latex > FAQ > Latex - FAQ > Latex partie réelle
Toutes les versions de cet article : <English> <français>
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} $$
Il est possible d’utiliser la fonction \Re :
$$\Re (z)= \Re(a+ib)=a$$
$$ \Re (z)= \Re(a+ib) = a $$
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 $$
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 d’un nombre complexe ?