I'm currently facing a problem with the align environment. I'd like to write six matrices in two rows, aligned on each equal sign per column. The problem is that I can't figure out how to do this with the align environment for some reason. I've read the related posts here and here, where [1] seems to be a bit of an overkill for my problem and [2] doesn't work for some reason...
An MWE to the problem:
\documentclass{article}
\usepackage[margin=2.5cm]{geometry}
\usepackage{amssymb, amsthm, mathtools}
\begin{document}
\begin{align*}
I _ { 1 } &=
\begin{pmatrix}
{ 0 } & { 0 } & { 0 } & { 0 } \\
{ 0 } & { 0 } & { 0 } & { 0 } \\
{ 0 } & { 0 } & { 0 } & { 1 } \\
{ 0 } & { 0 } & { - 1 } & { 0 }
\end{pmatrix},
I _ { 2 } &&=
\begin{pmatrix}
{ 0 } & { 0 } & { 0 } & { 0 } \\
{ 0 } & { 0 } & { 0 } & { 1 } \\
{ 0 } & { 0 } & { 0 } & { 0 } \\
{ 0 } & { -1} & { 0 } & { 0 }
\end{pmatrix},
I _ { 3 } &&=
\begin{pmatrix}
{ 0 } & { 0 } & { 0 } & { 0 } \\
{ 0 } & { 0 } & { 1 } & { 0 } \\
{ 0 } & { -1 } & { 0 } & { 0 } \\
{ 0 } & { 0 } & { 0 } & { 0 }
\end{pmatrix}, \\
J _ { 1 } &=
\begin{pmatrix}
{ 0 } & { -1} & { 0 } & { 0 } \\
{ -1} & { 0 } & { 0 } & { 0 } \\
{ 0 } & { 0 } & { 0 } & { 0 } \\
{ 0 } & { 0 } & { 0 } & { 0 }
\end{pmatrix},
J _ { 2 } &&=
\begin{pmatrix}
{ 0 } & { 0 } & { -1} & { 0 } \\
{ 0 } & { 0 } & { 0 } & { 0 } \\
{ -1} & { 0 } & { 0 } & { 0 } \\
{ 0 } & { 0 } & { 0 } & { 0 }
\end{pmatrix},
J _ { 3 } &&=
\begin{pmatrix}
{ 0 } & { 0 } & { 0 } & { - 1 } \\
{ 0 } & { 0 } & { 0 } & { 0 } \\
{ 0 } & { 0 } & { 0 } & { 0 } \\
{ - 1 } & { 0 } & { 0 } & { 0 }
\end{pmatrix}.
\end{align*}
\end{document}
Note: I'm aware that most of the {} are useless here but the matrices were generated by Mathpix....


&) but what about them? – David Carlisle Mar 20 '19 at 19:26