Problema con la sangría del subelemento en la lista.

Problema con la sangría del subelemento en la lista.

Soy muy nuevo en LaTeX y actualmente estoy escribiendo mis tesis en él. Quiero crear una lista con elementos y subelementos. Pero tengo un problema con la sangría. Estoy seguro de que es un error de principiante, pero no puedo entenderlo.

Problema

\begin{itemize}
    \item \textbf{What is Lorem Ipsum?} \\
    \subitem Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. \\
    \item \textbf{Why do we use it?} \\
    \subitem Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. \\
\end{itemize}

Qué estoy haciendo mal aquí ? Solo quiero que el texto comience donde comienzan las otras oraciones de ese párrafo, no con ese espacio vacío.

¡Muchas gracias!

Respuesta1

ingrese la descripción de la imagen aquí

\documentclass{article}
\begin{document}
\begin{itemize}
    \item \textbf{What is Lorem Ipsum?} 

     Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. 
    \item \textbf{Why do we use it?}

     Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. 
\end{itemize}
\end{document}

información relacionada