PDA

View Full Version : Displaying a Matrix-Vector Eq with LaTeX


kimspg
May14-04, 02:47 PM
A bit OT, I know, but there must be a way to get matrices to appear on the same line so I can write matrix-vector equations.

matt grime
May14-04, 02:56 PM
matrices can usually be displayed with an array argument, plus some bracketing argument

chroot
May14-04, 08:23 PM
Like this?


\sigma_{3} = \left(
\begin{array}{cc}
1 & 0\\
0 & -1
\end{array}
\right)


- Warren