枚举的非统一缩进

枚举的非统一缩进

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

相关内容