列挙項目で段落がインデントされない

列挙項目で段落がインデントされない

何らかの理由で、段落が自動的にインデントされません。ファイルは次のようになります。

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

ここに画像の説明を入力してください

関連情報