[Tex/LaTex] indenting under item

indentationitemize

I'm trying to indent paragraphs after doing \item, for instance

\item {\bf Research Question} \\
\indent The purpose of this research is

However, \indent is not working when I'm using \item. Would there be a way to solve this?

Best Answer

You're better off using enumitem to manage your lists:

enter image description here

\documentclass{article}
\usepackage{enumitem}
\begin{document}

\begin{itemize}
  \item \textbf{Something}

  Something else
\end{itemize}

\begin{itemize}[listparindent=\parindent]
  \item \textbf{Something}

  Something else
\end{itemize}

\noindent \textbf{Something}

Something else

\end{document}

The listparindent key sets the paragraph indent inside a list item, where the default isĀ 0pt. Note that you have to insert an explicit \par or an empty line. It's better than using \\ directly.

If you also want to indent the first paragraph in the itemize, then use itemindent, as suggested in Indenting First Paragraph in a List.

Related Question