縮排僅適用於某些段落

縮排僅適用於某些段落

我的縮排在文件的某一部分之後停止工作。這是開始代碼:

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

相關內容