枚舉的不均勻縮排

枚舉的不均勻縮排

我正在使用一個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}

在第二點之後,出現分頁並且縮排變得混亂。任何幫助都會很棒。另一件事:除了mathtools.

相關內容