0

I am using Texstudio to compose my assignment. However, I have a problem with it. After I used \section*{}, and the my first paragraph in section is indented to the very left. I want the paragraph starts with two space. How can I solve this problem?

Tim Hoffmann
  • 11,159

1 Answers1

3

Package indentfirst enables the paragraph indentation after section titles.

\documentclass{article}
\usepackage{indentfirst}
\usepackage{lipsum}

\begin{document}
\section{Section title}
\lipsum[1-2]
\end{document}

Result

Heiko Oberdiek
  • 271,626