matrice

Une matrice (m,n) est considérée comme un tableau de m*n éléments. Les éléments d'une ligne sont séparés par « & » et les lignes sont séparées par « \\ ».

Voici la syntaxe pour une matrice (m,n) :

\begin{format} a11&...&a1n\\ a21&...&a2n\\ ... \\ am1&...&amn \end{format}

Le préambule format définit le type de délimiteurs de la matrice.
  • Ex. sans délimiteur : $$\begin{matrix} a & \cdots & b \\ \vdots & \ddots & \vdots \\ c & \cdots & d \end{matrix}$$ donne

\begin{matrix} a & \cdots & b \\ \vdots & \ddots & \vdots \\ c & \cdots & d \end{matrix}

  • Les formats pmatrix, bmatrix, Bmatrix, vmatrix, Vmatrix donnent respectivement :
$$\begin{pmatrix} a & b \\ c & d \end{pmatrix}$$

\begin{pmatrix} a & b \\ c & d \end{pmatrix}

$$\begin{bmatrix} a & b \\ c & d \end{bmatrix}$$

\begin{bmatrix} a & b \\ c & d \end{bmatrix}

$$\begin{Bmatrix} a & b \\ c & d \end{Bmatrix}$$

\begin{Bmatrix} a & b \\ c & d \end{Bmatrix}

$$\begin{vmatrix} a & b \\ c & d \end{vmatrix}$$

\begin{vmatrix} a & b \\ c & d \end{vmatrix}

$$\begin{Vmatrix} a & b \\ c & d \end{Vmatrix}$$

\begin{Vmatrix} a & b \\ c & d \end{Vmatrix}

 

» Aide LaTeX