缩进仅对某些段落不起作用

缩进仅对某些段落不起作用

我的文档中某一节之后的缩进就停止了。以下是开始的代码:

\documentclass[11pt]{article}  
\usepackage{amsfonts}  
\usepackage{amsmath}  
\usepackage{amssymb}  
\usepackage{lastpage}  
\usepackage[margin=0.85in]{geometry}  
\usepackage{graphicx}  
\usepackage{tabu}  
\usepackage{textcomp,gensymb}  
\usepackage{caption}  
\usepackage{float}  
\usepackage{indentfirst}  
\usepackage{multirow}  
\usepackage{array}  
\usepackage{subcaption}  
\setlength{\parindent}{6.5ex}  
\setlength{\parskip}{1.5em}  

\begin{document}
This is the part when it does work anymore.

\section{blah blah}  
Blah blah blah, $math$, blah blah, like blah:  
\begin{gather*} more math \\ more math \\ more math \end{gather*}  
Blah blah... 

\end{document}

当我开始在段落内和段落外包含数学环境时,无论我怎么尝试,它似乎都不再起作用了。我尝试过使用\indent,使用,在末尾\setlength{...}指定所有段落使用,以结尾,但都不起作用。\par\\

这是它确实能起作用的部分。

\section{blah blah}  
Blah blah blah, $math$, blah blah, like blah:  
\begin{gather*} more math \\ more math \\ more math \end{gather*}  
Blah blah... 

本节之后,缩进不再起作用。

答案1

我解决了。在新部分之后,只需添加命令:

\setlength{\parindent}{...}

然后它又可以正常工作了。这可能会给我带来一些蓝色错误,但我已经学会了如何忽略它们。

前任。

\section{blah blah}
\setlength{\parindent}{6.5ex}
blah blah blah (is indented)

相关内容