为什么这里的文字没有缩进?

为什么这里的文字没有缩进?

这部分的某些内容导致了此处的缩进问题。这似乎parskip是此处的原因。

\usepackage{parskip}
\usepackage{mathtools}
\newcommand*{\permcomb}[4][0mu]{{{}^{#3}\mkern#1#2_{#4}}}
\newcommand*{\perm}[1][-3mu]{\permcomb[#1]{P}}
\newcommand*{\comb}[1][-1mu]{\permcomb[#1]{C}}
\usepackage{booktabs,capt-of}
\usepackage{newtxtext, newtxmath}
\usepackage[export]{adjustbox}   % it load graphicx too

如果我删除此部分,则它会按预期缩进。这里有什么问题?我该如何解决?
我读了,这似乎parskip是一件值得保留的事情,那么我可以同时保留缩进和包装吗?

\documentclass[journal]{IEEEtran}
\usepackage{algorithmic}
\usepackage{algorithm}
\usepackage{array}
\usepackage[caption=false,font=normalsize,labelfont=sf,textfont=sf]{subfig}
\usepackage{stfloats}
\usepackage{url}
\usepackage{verbatim}
\usepackage{graphicx}
\usepackage{cite}
\hyphenation{op-tical net-works semi-conduc-tor IEEE-Xplore}
\usepackage{parskip}
\usepackage{mathtools}
\newcommand*{\permcomb}[4][0mu]{{{}^{#3}\mkern#1#2_{#4}}}
\newcommand*{\perm}[1][-3mu]{\permcomb[#1]{P}}
\newcommand*{\comb}[1][-1mu]{\permcomb[#1]{C}}
\usepackage{booktabs,capt-of}
\usepackage{newtxtext, newtxmath}
\usepackage[export]{adjustbox}   % it load graphicx too
\usepackage{tabularray}
\usepackage{stfloats} % 


\begin{document}
\section{Introduction}
This is the first line of a section but why is it not indented here? 

The same for this, it is not indented even when I leave one empty line above. How can I fix this?
\end {document}

答案1

来自parskip包裹 文档

该包可用于任何大小的任何文档类。默认情况下,它会生成以下段落布局:零\parindent和非零\parskip

因此,默认情况下它设置\parindent0pt。如果要保留缩进,请添加indent包选项:

\usepackage[indent]{parskip}

从部分2.1 自定义包的选项

indent

使用包选项indent可以明确设置段落缩进。使用此选项而不指定值可保持文档类缩进不变,如果指定了值,则使用该值。如果在未使用此选项的情况下加载包,则缩进将设置为零。

相关内容