I have found similar questions to mine, but still could not figure out what to do yet.
I am using the book class, and in my list of figures, I have the default layout:
List of Figures
1.1 Very long caption that
breaks over many lines ..... 1
2.1 Very long caption that
breaks over many lines ..... 2
2.2 Very long caption that
breaks over many lines
that now hugs the first
entry from the same chapter
like this (no space in same
chapter's entries).......... 3
What I want is the exact same space it has between entries from different chapters (e.g. 1.1 and 2.1) to be applied throughout.
I really really don't want to deviate from the book class as everything else is perfect exactly like I want it.
Any suggestions about what one can do? Can I edit the macro in the book.cls file itself somehow?
I still want to do a list of tables too, and I assume it will have the same issue.
Edit: here is a bare-bones MWE of what I mean:
\documentclass[12pt,a4paper]{book}
\begin{document}
\listoffigures
\chapter{One}
\begin{figure}
\caption{Very long caption that continues over many lines. Very long
caption that continues over many lines. Very long caption that continues
over many lines. Very long caption that continues over many lines. Very
long caption that continues over many lines. Very long caption that
continues over many lines.}
\end{figure}
\chapter{Two}
\begin{figure}
\caption{Very long caption that continues over many lines. Very long
caption that continues over many lines. Very long caption that continues
over many lines. Very long caption that continues over many lines. Very
long caption that continues over many lines. Very long caption that
continues over many lines.}
\end{figure}
\begin{figure}
\caption{Very long caption that continues over many lines. Very long
caption that continues over many lines. Very long caption that continues
over many lines. Very long caption that continues over many lines. Very
long caption that continues over many lines. Very long caption that
continues over many lines.}
\end{figure}
\end{document}
Which produces, at the LOF:

\cftbeforesecskip. But without a sample code, it is very difficult to provide an accurate answer. Please consider to edit your post to provide an MWE, that is to say a minimal fully compilable code, starting with\documentclassand ending with\end{document}. – Jhor Sep 24 '19 at 13:19