Possible Duplicate:
How can I indent the paragraphs which follow a heading?
I want to ask why "Hello!" doesn't indent.
% work1.tex
\documentclass{article}
\begin{document}
\section{Introduction}
Hello!
Hi
\end{document}
Possible Duplicate:
How can I indent the paragraphs which follow a heading?
I want to ask why "Hello!" doesn't indent.
% work1.tex
\documentclass{article}
\begin{document}
\section{Introduction}
Hello!
Hi
\end{document}
That's a common rule for indent in some languages: it's indent only the second and other paragraph.
If you want indent first paragraph too: \usepackage{indentfirst}.
\sectionit is obvious that it is the start of a new paragraph so no indent is added. – Peter Grill Oct 30 '12 at 16:17