I have noticed that, for multiple single-column lines, flalign produces right-aligned formulas, while other alignment environments provided by amsmath produce center-aligned formulas. See the MWE below.
Code:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{gather}
\int_{a}^{b} f(t) , dt = F(b) - F(a) \
a^2 = b^2 + c^2
\end{gather}
\begin{flalign}
\int_{a}^{b} f(t) , dt = F(b) - F(a) \
a^2 = b^2 + c^2
\end{flalign}
\end{document}
amsmath’s user’s guide does not explain this behavior.
How do I center-align formulas in flalign?
Note that I do not want to align lines at, for instance, the equal sign. I want formulas to be centered relative to the page’s full body width, and I need to achieve this using flalign (I’m doing this).


\mathindentto zero – David Carlisle Jul 31 '23 at 17:16&&before and after the formulas of each line insideflalignbut the result is the same: right-aligned formulas. – donjuardo Jul 31 '23 at 17:17&&before the formula you have two empty columns and the formula in column 3 so again right aligned – David Carlisle Jul 31 '23 at 17:18gatheras that does no alignment, so the answer here is to usegather– David Carlisle Jul 31 '23 at 17:22gatherI cannot type left-aligned text beside and on the same line as the formulas, as explained [here][1]. That is my end goal, but with center-aligned formulas.[1] https://tex.stackexchange.com/a/61340/301662
– donjuardo Jul 31 '23 at 17:28&for the purpose of setting alignment points? – Mico Jul 31 '23 at 17:55gatherandgather*environments. – Mico Jul 31 '23 at 19:00