I want to align 6 matrices on two columns/3lines, with 2 matrices/line. Both columns to be aligned left. Can someone give me a hint or something?
Asked
Active
Viewed 311 times
0
1 Answers
1
I think you might be looking at an environment align nested in a fleqn environment, as follows:
\documentclass[12pt]{article}
\usepackage{amsmath}
\usepackage{nccmath}
\begin{document}
\begin{fleqn}
\begin{align*}
& A_{11} =\begin{bmatrix}
1 & 1 \\
1 & 1
\end{bmatrix}
& A_{12} =\begin{bmatrix}
1 & 2 \\
1 & 2
\end{bmatrix} \\
& A_{21} =\begin{bmatrix}
2 & 1\\
2 & 1
\end{bmatrix}
& A_{22} =\begin{bmatrix}
2 & 2 \\
2 & 2
\end{bmatrix} \\
& A_{31} =\begin{bmatrix}
3 & 1\\
3 & 1
\end{bmatrix}
& A_{32} =\begin{bmatrix}
3 & 2\\
3 & 2
\end{bmatrix}
\end{align*}
\end{fleqn}
\end{document}
I hope it is what you are looking for.
Romain
RockyRock
- 1,221

alignenvironment with two columns of aligned material. – Bernard May 16 '18 at 19:53