如何为段落的起始行添加缩进?

如何为段落的起始行添加缩进?
\documentclass[10pt, a4paper, oneside]{scrartcl}
\usepackage{lipsum} 
\title{\normalfont{Technical Report: Loren Ipsum}} 
\author{{Alex Murphy}}
\date{}
\begin{document}
\maketitle
\section*{Introduction} 
\lipsum[1-3] % Dummy text
\end{document}

上述代码生成以下输出, 在此处输入图片描述

但我的主管强迫我对所有段落的所有起始行进行缩进(即使是章节/小节的首行)我该如何做?

答案1

\section等。用于\@afterheading删除第一个后续段落的缩进。它使用\everypar通常用于其他目的的。要允许第一个段落缩进,只需禁用\@afterheading

\documentclass[10pt, a4paper, oneside]{scrartcl}
\usepackage{lipsum} 

\makeatletter
\renewcommand{\@afterheading}{}% or \let\@afterheading=\relax
\makeatother

\title{\normalfont{Technical Report: Loren Ipsum}} 
\author{{Alex Murphy}}
\date{}
\begin{document}
\maketitle
\section*{Introduction} 
\lipsum[1-3] % Dummy text
\end{document}

相关内容