如何跨页面保持嵌套项目符号列表的缩进?

如何跨页面保持嵌套项目符号列表的缩进?

我有一个嵌套的项目符号列表,它从一页的末尾开始,到下一页结束。但是,当跨页时,列表的缩进不会保留,项目符号会对齐到页面的左侧。

我该如何防止这种情况发生?将整个列表推到下一页是不是更好?

代码:

\begin{itemize}
    \item Compute a baseline score $s$ of the model $m$ on a data set $D$
    \item For each feature $i$:
    \begin{itemize}
        \item Randomly shuffle feature $i$ (a column in $D$) to obtain a perturbed data set $D_{i}$
        \item Compute the score $s_i$ of model $m$ on the data set $D_{i}$
        \item Compute the importance of feature $i$, $importance_i$, as:
        \begin{equation}
            importance_i = s - s_i
        \end{equation}
    \end{itemize}
\end{itemize}

结果: 在此处输入图片描述

PS:有没有办法让 3.6 与 3.7 居中一致?

相关内容