how i could write matrix in two line as shown in the attachment
for example want this matrix in two line
Code: Select all
\begin{bmatrix} 1 & 2 \\ 3 & 4 \end{bmatrix}
Code: Select all
\begin{bmatrix} 1 & 2 \\ 3 & 4 \end{bmatrix}
NEW: TikZ book now 40% off at Amazon.com for a short time.
Code: Select all
\documentclass{article}
%
\begin{document}
\[
\begin{array}{cc}
\left[
\begin{array}{c}
1 \\ 3
\end{array}
\right.
\\
&
\left.
\begin{array}{c}
2 \\ 4
\end{array}
\right]
\end{array}
\]
\end{document}
NEW: TikZ book now 40% off at Amazon.com for a short time.