我使用itemize
环境来回答一系列问题,因为输出紧凑而整洁。但是,当我需要在一个项目中使用多个段落时,第二个段落不会缩进,因为它应该在 之外itemize
。
\begin{itemize}
\item[1.]
This is the first paragraph of this item.
This the second paragraph of this item, and it is not indented.
\end{itemize}
我该如何解决这个问题?或者我只是处理itemize
错误\item
,并且真的应该尝试重新定义\section
以使我的文档在语义上更正确?
答案1
默认情况下,列表使用与连续文本不同的参数来缩进(后续)段落和段落之间的垂直间距。您可以使用enumitem
包来改变列表参数。
编辑:不要使用itemize
自定义标签,而是考虑使用enumerate
环境。
\documentclass{article}
\usepackage{enumitem}
\setlist{parsep=0pt,listparindent=\parindent}
\begin{document}
\begin{enumerate}
\item
This is the first paragraph of this item.
This the second paragraph of this item, and now it is properly indented.
(That is, only the first line.)
\end{enumerate}
\end{document}