
Eu gostaria de ter espaço 1em para todos os textos/parágrafos diretamente sob o nome da seção porque não há alteração mesmo depois de usar \parindent. E a ajuda é apreciada.
\documentclass{article}
%paragraph indentation
\setlength{\parindent}{1em}
%paragraph spacing
\setlength{\parskip}{1em}
\begin{document}
\section{Test}
This is another paragraph, contains some text to test the paragraph interlining, paragraph indentation and some other features. Also, is easy to see how new paragraphs are defined by simply entering a double blank space.
This is another paragraph, contains some text to test the paragraph interlining, paragraph indentation and some other features. Also, is easy to see how new paragraphs are defined by simply entering a double blank space.
\end{document}
A saída:
Responder1
Se entendi bem o seu objetivo, acredito que ele pode ser alcançado carregando orecuo primeiropacote.
\documentclass{article}
\usepackage{indentfirst} % <-- new
\setlength{\parindent}{1em}
\setlength{\parskip}{1em}
\begin{document}
\section{Test}
This is another paragraph, contains some text to test the paragraph interlining, paragraph indentation and some other features. Also, is easy to see how new paragraphs are defined by simply entering a double blank space.
This is another paragraph, contains some text to test the paragraph interlining, paragraph indentation and some other features. Also, is easy to see how new paragraphs are defined by simply entering a double blank space.
\end{document}