Problem mit der Einrückung von Unterelementen in der Liste

Problem mit der Einrückung von Unterelementen in der Liste

Ich bin ein Neuling in LaTeX und schreibe gerade meine Abschlussarbeit darin. Ich möchte eine Liste mit Einträgen und Untereinträgen erstellen. Aber ich habe ein Problem mit der Einrückung. Ich bin sicher, dass es ein Anfängerfehler ist, aber ich komme nicht dahinter.

Problem

\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}

Was mache ich hier falsch? Ich möchte nur, dass der Text dort beginnt, wo die anderen Sätze dieses Absatzes beginnen, und nicht mit diesem leeren Platz.

Vielen Dank!

Antwort1

Bildbeschreibung hier eingeben

\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}

verwandte Informationen