enumerate による不均一なインデント

enumerate による不均一なインデント

環境を使用して、enumerate一連の方程式を列挙しています。すべて正常に動作しますが、列挙が完了していない状態で PDF を生成するときに改ページがあると、次のページのインデントが通常の左揃えではなく中央揃えで表示されます。なぜこのようなことが起こるのか、誰か教えてもらえますか?

コードは次のとおりです。

編集:

\documentclass[10pt,twoside,a4paper]{article}
\usepackage{mathtools}

\begin{document}

Lot of contents and equation go here.......

\vspace{15cm}

The different equation obtained using KKT conditions are:

\noindent X\dotfill X

\begin{enumerate}
    \item Primal feasibility constraints are:
        \begin{equation} -(Bw^{(1)} + e_2b^{(1)}) + q \geq e_2, q \geq 0 \end{equation}
    \item Complementary Slackness conditions are:
        \begin{equation} \alpha^T(-(Bw^{(1)} + e_2b^{(1)}) + q - e_2) = 0, \beta^Tq = 0 \end{equation}
    \item Multiplier Positivity constraints are:
        \begin{equation} \alpha\geq 0, \beta \geq 0 \end{equation}
    \item Gradient conditions with respect to $w^{(1)}$, $b^{(1)}$ and $q$ are:
        \begin{equation} A^T(Aw^{(1)} + e_1b^{(1)}) + B^T\alpha = 0 \end{equation}
        \begin{equation} e_1^T(Aw^{(1)} + e_1b^{(1)}) + e_2^T\alpha = 0 \end{equation}
        \begin{equation} c_1e_2 - \alpha - \beta = 0 \end{equation}
\end{enumerate}

\noindent X\dotfill X

\end{document}

2 番目のポイントの後で、ページ ブレークが発生し、インデントがおかしくなります。 助けていただければ幸いです。 もう 1 つ: 以外のパッケージをインポートしていませんmathtools

関連情報