목록의 하위 항목 들여쓰기 문제

목록의 하위 항목 들여쓰기 문제

저는 LaTeX를 처음 접했고 현재 LaTeX로 논문을 쓰고 있습니다. 항목과 하위 항목이 포함된 목록을 만들고 싶습니다. 하지만 들여쓰기에 문제가 있습니다. 초보자의 실수라고 확신하지만 알아낼 수 없습니다.

문제

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

내가 여기서 뭘 잘못하고 있는 거지? 나는 그 빈 공간이 아니라 해당 단락의 다른 문장이 시작되는 곳에서 텍스트가 시작되기를 원합니다.

정말 감사합니다!

답변1

여기에 이미지 설명을 입력하세요

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

관련 정보