I would like to have enumerated paragraphs using the document's default paragraph layout. Currently, I achieve this using manual enumerations using the code listed below.
How can I get the same result, but automating the enumeration?
\documentclass{article}
\usepackage{lipsum}
\begin{document}
(1) \lipsum[1]
(2) \lipsum[1]
(3) \lipsum[1]
\end{document}



\begin{enumerate} \item bla \item ble \item blo \end{enumerate}? – yo' Mar 04 '15 at 13:24enumitempackage which is capable of doing this :-) – yo' Mar 04 '15 at 13:28