I'm trying to typeset the Gell-Mann matrices in LaTeX on Overleaf, these are 8 matrices 3x3. The code I'm using is
\documentclass[a4paper, 11pt, twoside, titlepage]{report} \usepackage{amsmath, amssymb} \begin{document} \begin{align} &\lambda^1=\begin{pmatrix} 0 & 1 & 0\\ 1 & 0 & 0\\ 0 & 0 & 0 \end{pmatrix} & &\lambda^2=\begin{pmatrix} 0 & -i & 0\\ i & 0 & 0\\ 0 & 0 & 0 \end{pmatrix} & &\lambda^3=\begin{pmatrix} 1 & 0 & 0\\ 0 & -1 & 0\\ 0 & 0 & 0 \end{pmatrix}\notag\\[7pt] &\lambda^4=\begin{pmatrix} 0 & 0 & 1\\ 0 & 0 & 0\\ 1 & 0 & 0 \end{pmatrix} & &\lambda^5=\begin{pmatrix} 0 & 0 & -i\\ 0 & 0 & 0\\ i & 0 & 0 \end{pmatrix} & &\lambda^6=\begin{pmatrix} 0 & 0 & 0\\ 0 & 0 & 1\\ 0 & 1 & 0 \end{pmatrix}\\[7pt] &\lambda^7=\begin{pmatrix} 0 & 0 & 0\\ 0 & 0 & -i\\ 0 & i & 0 \end{pmatrix} & &\lambda^8=\frac{1}{\sqrt{3}}\begin{pmatrix} 1 & 0 & 0\\ 0 & 1 & 0\\ 0 & 0 & -2 \end{pmatrix} &\notag \end{align} \end{document} This result in
I don't really like the fact that the last two matrices are aligned with the others and that lambda3 is further from from lambda2 than lambda2 is from lambda1 (same for the 2nd row). I would love for the first two rows to be aligned where I specified but for the last two matrices to be placed generically centered. I tried with other environments (i.e. gather, split) but then I can't align the first two rows... I don't seem to find a solution. I need them to be in the same "block" (so I can't use two different align environment) and to have only one numbering tag placed in the center. Is there a way to break the alignement on a single row inside the align environment?



gathered) (orgather)