I checked extensively the forum and the net in order to solve this seemingly simple problem, without success. I know that there are a lot of posts regarding this problem, but I was unable to find the one that was fitting my purpose.
I would like to add an extra line inside the List of Figures and Tables when switching from one chapter to another, when using the scrbook class of ClassicThesis.
So for example it should be:
- Figure 1.1
Figure 1.2
Figure 2.1
Figure 3.1
while what I obtain now is:
- Figure 1.1
- Figure 1.2
- Figure 2.1
- Figure 3.1
Here is the MWE that reproduces my problem, with a possible solution that I took from here, which unfortunately doesn't work in my case:
\documentclass{scrbook}
\usepackage{classicthesis}
\usepackage{classicthesis-ldpkg}
\usepackage{subfig}
\usepackage{graphicx}
\begin{document}
\makeatletter
\let\my@chapter\@chapter
\renewcommand*{\@chapter}{%
\addtocontents{lof}{\protect\addvspace{10pt}}%
\my@chapter}
\makeatother
\listoffigures
\clearpage
\chapter{1}
\begin{figure}
\centering
\includegraphics[scale=.9]{fig1}
\caption{Figure 1 of the chapter 1}
\end{figure}
\begin{figure}
\centering
\includegraphics[scale=.9]{fig2}
\caption{Figure 2 of the chapter 1}
\end{figure}
1
\chapter{2}
\begin{figure}
\centering
\includegraphics[scale=.9]{fig3}
\caption{Figure 1 of the chapter 2}
\end{figure}
\chapter{3}
\begin{figure}
\centering
\includegraphics[scale=.9]{fig4}
\caption{Figure 1 of the chapter 3}
\end{figure}
\end{document}
Thanks for your kind help.

classicthesis. You should write an e-mail to the author. KOMA provides the optionchapteratlistswhich is disabled. The packagetitlesecloaded byclassicthesisprovides the possibility by changing the commandchaptertolistsor the commmand\ttl@tocsep. Both fails. – Marco Daniel Apr 07 '12 at 11:06classicthesis, it was possible to activate thelistsseparatedoption, whose aim was exactly to group the figures and tables related to the same chapter. This option was disabled in the 2011 version, because of some conflicts with other packges/options.@locktep: thanks for your suggestion. I upvoted your answer and I did the same with the ones that gave successful solutions to my previous questions.
– mp87 Apr 09 '12 at 09:44