Hope you are doing fine. Now, to get straight to the point: I have a multiple line equation inside an align environment. I have been trying, with no success, to accommodate each line inside the equation so that the final product can be an equation showing a slight inclination...
Minimal working example below:
\documentclass[a4paper,12pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{booktabs}
\usepackage{array}
\usepackage{fullpage}
\usepackage{graphicx}
\usepackage{fancyhdr}
\begin{document}
\begin{align}
\begin{aligned}
\gamma_i\,\gamma_j\,\gamma_k\ \tilde{M}_{jk} &= const_{\alpha}\,{\Big[}\gamma_1\gamma_1\gamma_1\,m_{11} \,+\\
& + \gamma_1\gamma_1\gamma_2\,m_{12} \\
& + \gamma_1\gamma_1\gamma_3\,m_{13} \\
& + \gamma_1\gamma_2\gamma_1\,m_{21} \\
& + \gamma_1\gamma_2\gamma_2\,m_{22} \label{someequation}\\
& + \gamma_1\gamma_2\gamma_3\,m_{23} \\
& + \gamma_1\gamma_3\gamma_1\,m_{31} \\
& + \gamma_1\gamma_3\gamma_2\,m_{32} \\
& + \gamma_1\gamma_3\gamma_3\,m_{33}{\Big]}.
\end{aligned}
\end{align}
\end{document}
I have tried with \qquad, shifting the & around, removing it, \hspace, {}, and many other options, with no success. Is there any chance this can be done with some elegancy (or not)?
Thanks in advance! Cheers



\mathrm{const}and don't usealignfor single line equations, useequation– David Carlisle Mar 08 '21 at 22:21\mathrmtip and thealignissue. – GEBRU Mar 09 '21 at 00:19