I know there are lots of questions out there about "left align using alignat". But so far I haven't figured out a solution to this. I am using \begin{alignat}{2} and want to make a piece of \text{..} left-aligned (i.e. flush with the left hand margin) but keep the rest of the equation centered. How can I achieve this?
MWE
\documentclass[12pt]{report}
\usepackage[margin=4cm,showframe]{geometry}
\usepackage{mathtools}
\usepackage{newtxtext}
\begin{document}
\begin{alignat}{2}
a_1 &= b_1 &&= c_1
\\
\text{and} a_{111} &= b_{111} &&= c_{111}.
\end{alignat}
\end{document}
UPDATE
I understand that using either \intertext or \shortintertext are options, but, I have lots of other equations written using flalign for which I am able to get "and" on the same line. So I was hoping I could keep the formatting consistent.





b_1andb_{111}are conveniently very similar to each other. Maybe my mistake for choosing a very simple MWE ;) – Milo Jun 13 '18 at 18:33