Абзацы не имеют отступа в элементе перечисления

Абзацы не имеют отступа в элементе перечисления

По какой-то причине мои абзацы не отступают автоматически. Мой файл выглядит так:

\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

Это установлено по умолчанию, поскольку есть ненулевой \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} 

введите описание изображения здесь

Связанный контент