强制在枚举列表后换行

强制在枚举列表后换行

我遇到了一个有点愚蠢的问题。这是一张图片:

在此处输入图片描述

我想要的只是让这两个解决方案中的“没有缩进,(我不知道为什么乳胶会这样做)。我通常通过使用\\开始新行来解决问题。不幸的是,我一直收到以下错误:

在此处输入图片描述

以下是代码:

\begin{enumerate}
\item The first solution would be to find the solution to the first minimization problem mentioned in the subsection Situation 1 and then given the $\theta$ matrix calculated there, use that matrix for the minimization problem found in Subsection 2.
\item The second solution is to perform the two minimization problems concurrently. i.e perform the minimization for both $\theta$ and $X$. 
\end{enumerate}
\\
Of these two solutions, the solution mentioned in the second point is the most optimal one.

说实话,a) 不知道为什么会抱怨,b) 如何修复它。有人帮忙吗?

答案1

只需删除\\,并在 后不留空行enumerateenumerate结束时,它会引入一个新的非缩进段落。

梅威瑟:

\documentclass{article}

\begin{document}

\begin{enumerate}
\item The first solution would be to find the solution to the first minimization problem mentioned in the subsection Situation 1 and then given the $\theta$ matrix calculated there, use that matrix for the minimization problem found in Subsection 2.
\item The second solution is to perform the two minimization problems concurrently. i.e perform the minimization for both $\theta$ and $X$.
\end{enumerate}
Of these two solutions, the solution mentioned in the second point is the most optimal one.

\end{document}

输出:

在此处输入图片描述

相关内容