текст под заголовком раздела без интервала

текст под заголовком раздела без интервала

Я хотел бы иметь пробел 1em для всего текста/абзацев под названием раздела напрямую, потому что нет никаких изменений даже после использования \parindent. И помощь приветствуется.

\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}

Выход:

введите описание изображения здесь

решение1

Если я правильно понял вашу цель, я считаю, что ее можно достичь, загрузивотступпервыйупаковка.

введите описание изображения здесь

\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}

Связанный контент