[Tex/LaTex] Justifying text in overleaf template

horizontal alignment

I really want to use the following overleaf template:
https://www.overleaf.com/latex/examples/sample-apa-paper/wbzdqpgxszqs#.WRby39zfPIV
(Sample APA paper)
But unfortunately, the text is left rigged and I want it to be justified.
I assumed that justified text is latex's default, so I concluded that in this template leftrigged must be on but I cannot find it.
Does someone know a solution?

Best Answer

APA guidelines require ragged papers. If you want your text to be justified, you will not get a document complying to APA rules, but a close hit.

Add to your document preamble:

\usepackage{ragged2e}
\justifying
Related Question