
나는 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
.