呈现逐项列表的正确惯例是什么?
是不是像这样,前一行和列表之间没有任何段落分隔符?
\documentclass{article}
\begin{document}
There are 10 types of people in this world:
\begin{itemize}
\item Those who understand binary.
\item Those who don't.
\end{itemize}
\end{document}
还是像这样,它们之间有一个段落间隔?
\documentclass{article}
\begin{document}
There are 10 types of people in this world:
\begin{itemize}
\item Those who understand binary.
\item Those who don't.
\end{itemize}
\end{document}
答案1
LaTeX 明确测试了这种情况。如果列表前有段落分隔符,则调整垂直间距(\partopsep
而不是\topsep
),列表后面的文本将开始一个新段落。
因此两者都是正确的,并且像任何段落分隔一样,由作者来编码所需的含义,是当前段落(或句子)的列表部分,还是作为与前一段分开的显示段落。