Wie erhalte ich gewünschte Überschriftenabstände (ähnl. "Bronnstein"), Überschriftenabstände, auch bei aufeinanderfolgenden Überschriften?
Anschlußfrage an [wie-erhalte-ich-uberschriftenabstande-wie-im-bronstein][1]
___
Wie erhalte ich gewünschte Überschriftenabstände (ähnl. "Bronnstein"), auch bei aufeinanderfolgenden Überschriften? So dass die Überschriften bei den tikz-Pfeilenden beginnen.
Wie muss `\addvspace` hier richtig eingebracht werden?
![alt text][2]
    \documentclass[
    fontsize=12pt, 
    paper=a4,
    numbers=enddot,
    headings=small, % Überschriften kleiner
    twoside,
    open=any,
    %BCOR=8mm, % Bindekorrektur
    headheight=3ex, %???
    footheight=3ex, %???
    ]{scrreprt}%
    
    \usepackage[
    top=1cm, 
    bottom=1.25cm,
    %left=1cm,
    %right=1cm,
    includehead, includefoot, 
    headsep=2pt, % Augenmaßeinstellung
    footskip=5mm, % Augenmaßeinstellung
    ]{geometry}
    
    \usepackage{selinput}       % Kodierung
    \SelectInputMappings{adieresis={ä},  germandbls={ß}}
    \usepackage[ngerman]{babel}     % Sprache
    \usepackage[T1]{fontenc}        %Trennungen
    \usepackage{microtype}      %
    % Schrift
    \usepackage{bera}
    \setkomafont{disposition}{\bfseries}
    % Nummerierungstiefe
    \setcounter{secnumdepth}{\subsubsectionnumdepth}
    
    % Layout
    \usepackage[
    automark, %entspricht \automark[section]{chapter}
    %autooneside=false,
    headsepline=true,
    plainheadsepline=true, % headsepline auch am Kapitelanfang
    footsepline=true,
    plainfootsepline=true, % footsepline auch am Kapitelanfang
    ]{scrlayer-scrpage}
    \pagestyle{scrheadings}
    \setkomafont{pageheadfoot}{\footnotesize} % Schriftgröße head/foot
    \setkomafont{pagenumber}{\normalfont\bfseries} % Seitenzahl aufrecht, fett
    
    
    % Einstellung der Abstände von Überschriften
    \newlength\Hoehe
    \setlength\Hoehe{1ex plus 1pt minus 1pt}
    \RedeclareSectionCommand[
      beforeskip=\Hoehe,
      afterskip=0.5\baselineskip plus 1pt minus 1pt]{chapter}
    \RedeclareSectionCommand[
      beforeskip=3.5\Hoehe,%1.75\Hoehe,
      afterskip=0.5\baselineskip]{section}
    \RedeclareSectionCommand[
      beforeskip=-0.5\baselineskip,
      afterskip=0.6125\Hoehe]{subsection}
    \RedeclareSectionCommand[
      beforeskip=0.6125\Hoehe,
      afterskip=1\Hoehe]{subsubsection}
    \RedeclareSectionCommands[
      beforeskip=0.142\Hoehe,
      afterskip=0\Hoehe]{paragraph,subparagraph}
        
    \usepackage{tikz}
    
    \usepackage{mwe}
    \usepackage{showframe}
    \begin{document}
    %\tableofcontents
    \chapter{Erstes Kapitel}
    \section{Erster Abschnitt}
    \subsection{Erster Unterabschnitt}
    \subsubsection{Erster Unter-Unterabschnitt}
    %\paragraph{Erster Paragraph}
    \lipsum[66]
    \subsubsection{Zweiter Unter-Unterabschnitt}
    
    \def\z{1.0ex}
    \begin{tikzpicture}[overlay, remember picture, >=latex, font=\small,
    every node/.style={below=1.5cm, rotate=90,},
    SHIFT/.style={yshift=-0*\z},
    blue!50!black,
    font=\ttfamily,
    ]
    \fill[red](current page.north) circle (2mm);
    \fill[brown](current page.center) circle (2mm);
    %Kopfzeile
    \draw[|<->|, red, shorten <=-1cm](current page.north) -- (current page.north) node[]{Kopfzeile};
    %Fußzeile
    \draw[|<->|, red, shorten <=1.25cm](current page.south) -- (current page.south) node[]{Fußzeile};
    % Überschriftenabstände %-3.5*\z-6*\z
    \draw[|<->|, shorten <=-9.5*\z]([xshift=-8cm, SHIFT]current page.north) -- ([xshift=-8cm, SHIFT]current page.north) node[]{chapter};
    
    \draw[|<->|, shorten <=-7*\z-6*\z]([xshift=-7cm, SHIFT]current page.north) -- ([xshift=-7cm, SHIFT]current page.north) node[]{section};
    
    \draw[|<->|, shorten <=-8.75*\z-6*\z]([xshift=-6cm, SHIFT]current page.north) -- ([xshift=-6cm, SHIFT]current page.north) node[]{subsection};
    
    \draw[|<->|, shorten <=-10*\z-6*\z]([xshift=-5cm, SHIFT]current page.north) -- ([xshift=-5cm, SHIFT]current page.north) node[]{subsubsection};
    
    \draw[|<->|, shorten <=-11*\z-6*\z]([xshift=-4cm, SHIFT]current page.north) -- ([xshift=-4cm, SHIFT]current page.north) node[]{Text};
    
    %\draw[|<->|, shorten <=-6*\z]([xshift=4cm, SHIFT]current page.north) -- ([xshift=4cm, SHIFT]current page.north) node[]{Textkörper};
    
    %\draw[|<->|, shorten <=-24mm]([xshift=5cm, SHIFT]current page.north) -- ([xshift=5cm, SHIFT]current page.north) node[]{Textkörper'};
    \end{tikzpicture}
    
    
    \blinddocument\blinddocument\blinddocument
    \end{document}
  [1]: http://texwelt.de/wissen/fragen/18280/wie-erhalte-ich-uberschriftenabstande-wie-im-bronstein
  [2]: http://texwelt.de/wissen/upfiles/55555555_48.png