缩进新章节的段落

缩进新章节的段落

以下代码用于开始一个新部分,并缩进一个段落。但是该段落没有缩进。我还需要使用左对齐才能保持正确对齐。如果有人能帮助我,我将不胜感激

\chapter{Related Work}
\label{chapter3}

\section{Channel Characterization}

\setlength{\parindent}{5ex}
\begin{flushleft}

Accurately characterizing the wireless small-scale 

答案1

要缩进每个部分的第一段,使用:

\usepackage{indentfirst}

要使整个文档具有左对齐,请使用:

\usepackage[document]{ragged2e}

如果您不想在第一段(例如摘要)中缩进,请\noindent在段落前使用。

答案2

titlesec 包允许自定义\section命令和朋友。使用不带星号的版本\titlespacing不会阻止第一段的缩进。不过,这似乎不适用于 flushleft。

\documentclass{article}
\usepackage{titlesec}
% default values copied from titlesec documentation page 23
% "The starred version kills the indentation of the paragraph following the title" titlesec documentation page 4
\titlespacing{\section}
    {0pt}% left margin 
    {3.5ex plus 1ex minus .2ex}% space above the heading
    {2.3ex plus .2ex}% space below the heading

\usepackage{blindtext}
\begin{document}
\section{Section~A}
\Blindtext
\section{Section~B}
\Blindtext
\end{document}

截屏

相关内容