特定列表环境中的普通段落

特定列表环境中的普通段落

考虑以下 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} 

在此处输入图片描述

相关内容