On Mon, Apr 30, 2001 at 11:46:34AM -0500, Chris Green wrote:
> When diving into more documentation, I was very confused because the
> textclass of the paragraph following the Section header was also
> called standard yet it was not indented so I looked around and found
> the NoNextIndent 1 in all the Section style definitions. Removing
> them allowed the first paragraph to be indented and look like the rest
> of the text.
>
> \usepackage{indentfirst} does what I need in the cleanest way. My
> kludge of getting rid of 'NoIndentFirst 1' does it both ways but I'm
> sure is subtlety breaking things that I do not yet understand.
>
> I'm currently retraining myself and I appreciate everyone's help.
Your layout file should be something like
#% Do not delete the line below; configure depends on this
# \DeclareLaTeXClass[article]{article (no indent)}
Input article.layout
Preamble
\usepackage{indentfirst}
EndPreamble
Style Section
NextNoIndent 0
End
Style SubSection
NextNoIndent 0
End
...