I have a document of scrbook class, which defines \chapters, \sections, and so on. I use a lot of figures. What's special about my document is that the Chapters are numbered 1, 2, 3, ...; the sections are numbered 1.1, 1.2, 1.3, ...; but my Appendix is a \chapter* without number, and the sections of the the Appendix are numbered with \Alph{section}.
Now, my problem is that the \listoffigures always produces a vertical space (empty line) between figures of different chapters, but it does not handle the appendix sections as chapters. While figures 4.1, 4.2, 4.3 are grouped together, and also 5.1, 5.2, I have the issue that all figures from all appendices (A, B, C, D) are grouped together without any vertical space.
This is a very specific issue, let me try to create a minimal working example:
\documentclass{scrbook}
\begin{document}
\listoffigures
\chapter{Lorem}
\begin{figure}[htb]
\caption{1st lorum figure.}
\end{figure}
\begin{figure}[htb]
\caption{2nd lorum figure.}
\end{figure}
\chapter{Ipsun}
\begin{figure}[htb]
\caption{1st ipsum figure.}
\end{figure}
\begin{figure}[htb]
\caption{2nd ipsum figure.}
\end{figure}
\chapter{Dolorem}
\appendix
\chapter*{Appendix}
\renewcommand{\thesection}{\Alph{section}}
\renewcommand{\thefigure}{\thesection.\arabic{figure}}
\section{Lorem (Supplemental)}
\begin{figure}[htb]
\caption{3rd lorum figure.}
\end{figure}
\begin{figure}[htb]
\caption{4th lorum figure.}
\end{figure}
\section{Ipsum (Supplemental)}
\begin{figure}[htb]
\caption{3rd ipsum figure.}
\end{figure}
\begin{figure}[htb]
\caption{4th ipsum figure.}
\end{figure}
\section{Dolorem (Supplemental)}
\end{document}
This screenshot of the MWE visualizes my problem best:
How to add a single line vertical space to list of figures between the appendix sections only?



\sectionfor chapters. So use e.g.\chapter{Lorem (Supplemental)}and do not redefine\thesectionand\thefigure. – Schweinebacke Feb 22 '17 at 11:36