如何创建跨越多个段落的枚举?

如何创建跨越多个段落的枚举?

可能重复:
恢复列表

我想创建一个列表,其中包含任意大小的段落:

文档的屏幕截图应如下所示

我怎样才能做到这一点?(我现在所做的是居中并且没有自动编号)

答案1

在此处输入图片描述

\documentclass{article}

\def\a{One two three. }
\def\b{\a\a Four five. \a}
\def\c{\b\b Red green blue. \b \a}
\def\d{\c\c}

\newcounter{hyp}

\newenvironment{hyp}
{\refstepcounter{hyp}\trivlist\itshape\centering\item[(\thehyp)]}
{\endtrivlist}


\begin{document}

\begin{hyp}\label{ha}
Something or other is better than that other thing
\end{hyp}

Some text about hypothesis \ref{ha} \d


\begin{hyp}\label{hb}
Black and white.
\end{hyp}

Some text about hypothesis \ref{hb} \d


\end{document}

相关内容