gregsa wrote:Package caption is great but it still does not do this (i.e. put a space between lines for chapters) by default.
I cannot confirm this, this code is doing its job as expected:
- Code: Select all • Open in writeLaTeX
\documentclass{book}
\usepackage{caption}
\DeclareCaptionType{test}
\begin{document}
\listoftests
\chapter{A}
\begin{test}[!ht]
\caption{A1}
\end{test}
\begin{test}[!ht]
\caption{A2}
\end{test}
\chapter{B}
\begin{test}[!ht]
\caption{B1}
\end{test}
\begin{test}[!ht]
\caption{B2}
\end{test}
\end{document}
(Tested with version 3.1k of the caption package, this is the one shipped with TeXlive 2009)
If you have a small but complete example for me with wrong behavior, I can take a look at it and try to fix it.
Axel