我试图将其制作成列表,它给了我一个hbox overfull
并在 pdf 中将文本向右对齐。我只是想在上面放上数字并制作一个列表。
\begin{enumerate}
\list A confined aquifer with no leaking.
\list The wells are fully penetrating.
\list The cone of depression is symetric around the well.
\list The aquifer is homogenous and isotropic meaning that the hydrauli cconductivity (k) does not change.
\list There is not vertical flow ie. no recharge and water is flowing into the well only.
\list Drawdown in the well occurs instanteously ie water comes into the well from the surrounding rock without delay.
\list All flow is Darcian.
\list At t=o, meaning start of the test the drawdown(s) is zero.
\list The drawdown at an infinite distance from the well is zero.
\list Volume of water entering the well is equal to the pump rate (steady-state conditions).
\list The well box is not being resupplied with water which means we have an infinitely small well.
\end{enumerate}
答案1
要开始新的列表项,您应该使用\item
列表环境 ( itemize
, enumerate
, description
) 中的命令,而不是\list
。因此尝试
\begin{enumerate}
\item First points
\item Second
\item Etc.
\end{enumerate}