[Tex/LaTex] Align text and use indent

horizontal alignmentindentation

I want to align my text and also use indent at each paragraph.But it seems i can use only one of them (either alignment or indent).

\usepackage{indentfirst}

\begin{flushleft}

\section {Heading}

\indent Here is text.....

\par\indent Another text,....

\end{flushleft}

Best Answer

Are you sure you want this? flushleft uses \raggedright which sets \parindent to 0 if you \setlength\parindent{2em} after starting the environment you will get a visible indent again.

Related Question