考虑以下 MWE。
\documentclass{article}
\usepackage{enumitem}
\def\widestnumber{25}
\newlist{mylist}{enumerate}{1}
\setlist[mylist,1]{
leftmargin=40pt,
labelsep=1.0em,
itemsep=0.0em,
topsep=0.5em,
label=\arabic*.,
widest*=\widestnumber}
\begin{document}
\begin{mylist}
\item Here is a list item which consists of two paragraphs. This is the first paragraph.
Here is the second paragraph. I want it to have a normal indent at the beginning.
\item Here is another item.
\end{mylist}
\end{document}
答案1
这是你想要的吗?
\documentclass{article}
\usepackage{enumitem}
\def\widestnumber{25}
\newlist{mylist}{enumerate}{1}
\setlist[mylist,1]{
leftmargin=40pt,
labelsep=1.0em,
itemsep=0.0em,
topsep=0.5em,
label=\arabic*.,
widest*=\widestnumber,
listparindent =\parindent
parsep=0pt}
\begin{document}
\begin{mylist}
\item Here is a list item which consists of two paragraphs. This is the first paragraph.
Here is the second paragraph. I want it to have a normal indent at the beginning.
\item Here is another item.
\end{mylist}
\end{document}