[Tex/LaTex] Multiple arrays side-by-side

arrayssubfloats

what I've been trying to do is to pack multiple arrays on a single 'row', similar to what subfig module does with images (and tables, I guess); mostly to conserve space.

Something like this:

arrays

I would use tables and subfig instead of arrays, but I'm not sure how the parentheses would work.

Best Answer

Just write the array in the same line, without a paragraph break or leaving the math environment, such as

\[
  l = \left(\begin{array} ... \end{array}\right) \qquad 
  A = \left(\begin{array} ... \end{array}\right ...
\]

resp. matrix environments.

Related Question