[Tex/LaTex] how to set the left margin for all formulas in the text

equationsindentationlists

My text includes description of a formula and its equation right after that. But each time that I add a new item (description) the corresponding formulas have different indent. How can I change it such that when looking at the whole page, I see all the formulas having the same indent.
Here is the code:

\item a
    \begin{align}
    &\sum_{k=1}^{K} ... \label{bal2}&\\
    &\sum_{k=4}^{5}...  \label{bal3}&        \label{bal3}\end{align} 
\item b
    \begin{align}
    &\sum_{j=1}^{J}... \label{bal4}&        \end{align}

Best Answer

From the comment of prettygully: The default is to have equations centered. use can use \documentclass[fleqn]{article} to have all equations start a given distance from the left margin. this distance can be modified using e.g. \setlength{\mathindent}{2cm}