枚举项中的段落未缩进

枚举项中的段落未缩进

由于某种原因,我的段落没有自动缩进。我的文件如下所示:

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

在此处输入图片描述

相关内容