
Me gustaría tener un espacio de 1 em para todo el texto/párrafos bajo el nombre de la sección directamente porque no hay cambios incluso después de usar \parindent. Y se agradece la ayuda.
\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}
La salida:
Respuesta1
Si entendí correctamente su objetivo, creo que se puede lograr cargando elsangría primeropaquete.
\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}