I want to define the vertical space that is inserted between text paragraphs when there is an empty line in the code. If I use
\setparsizes{0pt}{1.0\baselineskip}{0pt plus 1fil}
or
\setlength{\parskip}{\bigskipamount}
\setlength{\parindent}{0pt}
then it affects also the vertical space between the headings and other.
Is there an easy solution where I do not have to use something like \mypar
with\newcommand{\mypar}{\par\bigskip}.
\documentclass{scrreprt}
%% Method by KOMA-Script
%\setparsizes{0pt}{1.0\baselineskip}{0pt plus 1fil}
%% Other Method
\setlength{\parskip}{\bigskipamount}
\setlength{\parindent}{0pt}
\begin{document}
\chapter{}
==========================================
\section{TestSection Large Space}
\subsection{TestSubsection Large Space}
\subsubsection{TestSubSubsection Large Space}
Here we have big vertical space between headings because parskip
is inserted. I just want a parskip between text paragraphs.
==========================================
\newcommand{\mypar}{\par\bigskip}
\setlength{\parskip}{0pt}
\section{TestSection space I want}
\subsection{TestSubSection space I want}
\subsubsection{TestSubSubsection space I want}
Here I have the space between the headings that I want. And the space between text-paragraphs that I want.
\mypar
I wonder if there is an easy way to achieve this.
I would like to keep using an empty line as par bigskip instead newcommand a new command to achieve that.
\end{document}


\parskipeither manually or with KoMa-Script methods.”;-)– egreg Mar 23 '16 at 18:51parskipbelowhalfthat your described solution still works? I only found https://tex.stackexchange.com/questions/161254/smaller-parskip-than-half-for-koma-script which seems like a manual setting which isn't recommend. – mhellmeier Mar 14 '21 at 18:24\setparsizesis descriped in the KOMA-Script documentation. You can use it, if you need a smallerparskipthanhalf. – esdd Mar 15 '21 at 14:20