Text unter dem Abschnittstitel ohne Leerzeichen

Text unter dem Abschnittstitel ohne Leerzeichen

Ich hätte gerne einen Abstand von 1em zu allen Texten/Absätzen direkt unter dem Abschnittsnamen, da sich auch nach Verwendung von \parindent nichts ändert. Und Hilfe ist willkommen.

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

Die Ausgabe:

Bildbeschreibung hier eingeben

Antwort1

Wenn ich Ihr Ziel richtig verstanden habe, glaube ich, dass es erreicht werden kann durch das Laden derEinzug zuerstPaket.

Bildbeschreibung hier eingeben

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

verwandte Informationen