열거 항목에서 단락이 들여쓰기되지 않음

열거 항목에서 단락이 들여쓰기되지 않음

어떤 이유에서인지 내 단락이 자동으로 들여쓰기되지 않습니다. 내 파일은 다음과 같습니다.

\documentclass{article}
\usepackage{fullpage,amsmath,amssymb,amsfonts,mathtools,amsthm,graphicx}
\begin{document}

\newcommand{\N}{\mathbb{N}}
\newcommand{\Z}{\mathbb{Z}}
\newcommand{\Q}{\mathbb{Q}}
\newcommand{\R}{\mathbb{R}}
\renewcommand{\P}{\mathbb{P}}
\newcommand{\T}{\mathbb{T}}
\newcommand{\Rie}{\mathcal{R}}
\newcommand\abs[1]{\left\lvert#1\right\rvert}

\newtheorem{theorem}{Theorem}
\newtheorem{corollary}{Corollary}[theorem]
\newtheorem{lemma}[theorem]{Lemma}

\title{Homework}
\author{My name}

\pagenumbering{gobble}
\maketitle
\begin{enumerate}
\item blahefjieojf

not indenting?
\end{enumerate}
\end{document}

단락을 들여쓰기하려면 어떻게 해야 합니까 \item?

답변1

0이 아닌 값이 있기 때문에 이는 기본적으로 설정됩니다 \parsep. 인쇄상으로 말하면 둘 다 갖는 것은 권장되지 않습니다. 패키지 를 사용하여 쉽게 변경할 수 있습니다 enumitem.

\documentclass{article}
\usepackage{fullpage,amsmath,amssymb,amsfonts,mathtools,amsthm,graphicx}
\newcommand{\N}{\mathbb{N}}
\newcommand{\Z}{\mathbb{Z}}
\newcommand{\Q}{\mathbb{Q}}
\newcommand{\R}{\mathbb{R}}
\renewcommand{\P}{\mathbb{P}}
\newcommand{\T}{\mathbb{T}}
\newcommand{\Rie}{\mathcal{R}}
\newcommand\abs[1]{\left\lvert#1\right\rvert}

\newtheorem{theorem}{Theorem}
\newtheorem{corollary}{Corollary}[theorem]
\newtheorem{lemma}[theorem]{Lemma}

\title{Homework}
\author{My name}
\usepackage{enumitem}%
\usepackage{lipsum}%

 \begin{document}

\pagenumbering{gobble}
\maketitle
\begin{enumerate}[listparindent=1em, parsep=0pt]
\item blahefjieojf

\lipsum[11]

\end{enumerate}

\begin{enumerate}[resume]
\item blahefjieojf

\lipsum[11]

\end{enumerate}

\end{document} 

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

관련 정보