[Tex/LaTex] How to indent paragraphs within an itemize environment

#enumerateindentationitemizelistsparagraphs

I'm sorry to ask such a simple question, but I've been searching around without finding a simple way to make each new paragraph indent when I'm in the \itemize environment.

Number 6 on this document is an example of a problem on which I'd like to have paragraphs indented: https://www.writelatex.com/read/dgjdgsptgwhr

Best Answer

Just to supplement @cfr, I usually use this general configuration

\usepackage{enumitem}
\setlist{  
  listparindent=\parindent,
  parsep=0pt,
}

To have paragraphs indented as in the normal doc, and to remove space between paragraphs in lists.