缩进在枚举环境中不起作用

缩进在枚举环境中不起作用

我不知道为什么这里的第二行没有缩进。我是否加载了覆盖缩进的包?它似乎在枚举环境中不起作用。

在此处输入图片描述

\documentclass[12pt]{article}

\usepackage[utf8]{inputenc}
\usepackage{fullpage}
\usepackage{amsfonts}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amsthm}
\usepackage{graphicx}
\usepackage[backend=biber, isbn=false, doi=false]{biblatex-chicago}

\newtheorem{lem}{Lemma}
\newtheorem{ex}{Example}

\newcommand{\Q}{\mathbb{Q}}
\newcommand{\Z}{\mathbb{Z}}
\newcommand{\N}{\mathbb{N}}
\newcommand{\R}{\mathbb{R}}
\newcommand{\C}{\mathbb{C}}

\DeclareMathOperator{\lcm}{lcm}
\DeclareMathOperator{\ord}{ord}

\title{Homework 2 - MATH 4001}
\author{Clyde Kertzer}
\date{\today}

\begin{document}

\setlength{\abovedisplayskip}{5pt}
\setlength{\belowdisplayskip}{5pt}
\setlength{\abovedisplayshortskip}{0pt}
\setlength{\belowdisplayshortskip}{0pt}

\setlength{\parindent}{20pt}

\maketitle
\begin{enumerate}
\item[2.] Show that the sequence of functions
$$ f_n(x)=\frac{n x}{1+n x} $$ 
does not converge uniformly on $[0,1]$.

Paragraph 2 (Why no indent)?

答案1

这是 LaTeX 中的标准行为。每当list打开 时,都会设置为零。和 也\listparindent有类似的行为。minipage\parbox

如果您想要在列表中拥有不同的 parindent,您必须指定它,最简单的方法是使用enumitem

\documentclass[12pt]{article}

\usepackage{enumitem}

\setlist[enumerate]{listparindent=\parindent}

\begin{document}

\begin{enumerate}
\item Show that the sequence of functions
\[
f_n(x)=\frac{n x}{1+n x}
\]
does not converge uniformly on $[0,1]$.

Paragraph 2 (Why no indent)?

\end{enumerate}

\end{document}

在此处输入图片描述

答案2

下面的技巧隐藏了\parindent原始寄存器,因此没有宏可以对该寄存器进行写访问。它们只能读取复制到伪造寄存器的值\parindentA

\parindent=20pt  % setting desired value
\newdimen\parindentA  \parindentA=\parindent % value is copied  
\let\parindent=\parindentA  % the primitive \parindent is unaccessible after this
\expandafter \let \csname tex_parindent:D\endcsname=\parindentA

相关内容