我希望有
BIG TITLE
Property: Value
Property: Value
Property: Value
First paragraph is flush left.
Second paragraph has the paragraph indent.
相反,我有
BIG TITLE
Property: Value
Property: Value
Property: Value
First paragraph is not flush left.
Second paragraph has the paragraph indent.
我如何重新开始段落缩进?
答案1
我认为,通过“重新开始”,您指的是第一段之后没有缩进的方式\chapter
。
\documentclass{article}
\usepackage{showframe}
\parskip=\baselineskip
\makeatletter
\newcommand{\firstpar}{\@afterindentfalse\@afterheading}
\makeatother
\begin{document}
\noindent\parbox{\textwidth}{Property value\\Property value\\Property value}
\firstpar
First paragraph.
Second paragraph.
\end{document}