Para escribir matrices en LaTeX debemos indicar que comienza la matriz con el comando \begin{matrix} y señala que termina la matriz con el comando \end{matrix}, los elementos de un renglón de la matriz se separan utilizando & y los renglones se delimitan utilizando \\.
Así, podemos escribir:
\begin{matrix}
1 & 2 & 3\\
4 & 5 & 6
\end{matrix}
Y el resultado será:
Si deseamos mostrar corchetes, escribimos:
\begin{bmatrix}
1 & 2 & 3\\
4 & 5 & 6
\end{bmatrix}
Y obtenemos:
Otra alternativa es usar paréntesis:
\begin{pmatrix}
1 & 2 & 3\\
4 & 5 & 6
\end{pmatrix}
También, se pueden mostrar llaves:
\begin{Bmatrix}
1 & 2 & 3\\
4 & 5 & 6
\end{Bmatrix}
Otra alternativa disponible es el formato de determinantes:
\begin{vmatrix}
1 & 2 & 3\\
4 & 5 & 6
\end{vmatrix}
Alternativamente, se tienen otros delimitadores:
Si escribimos:
\begin{Vmatrix}
1 & 2 & 3\\
4 & 5 & 6
\end{Vmatrix}
Tenemos:
Al escribir:
\left\lceil\begin{matrix}
1 & 2 & 3\\
4 & 5 & 6
\end{matrix}\right\rceil
El resultado será:
Escribimos:
\left\langle\begin{matrix}
1 & 2 & 3\\
4 & 5 & 6
\end{matrix}\right\rangle
Y tenemos:
Finalemente, es posible cambiar el tamaño de una matriz para escribrila en un renglón:
\left(\begin{smallmatrix}
1 & 2 & 3\\
4 & 5 & 6
\end{smallmatrix}\right)
Tal vez te interese: