[Tex/LaTex] KOMA script: How to reduce vertical space below caption

captionsfloatskoma-scriptspacing

The vertical space below figure caption is large how to reduce it.

\documentclass[a5paper]{scrbook}

\usepackage[demo]{graphicx}


\begin{document}

\chapter{Sample chapter}

\section{Sample section}

%
%
Some text more text more text more text more text more text more text more text more text more text more text.

\begin{figure}[htb!]
\centering
\includegraphics[width=0.25\textwidth]{frog.jpg}
\caption{A test caption without label for a figure}
\end{figure}

%
Some text more text more text more text more text more text more text more text more text more text more text.


\end{document}

enter image description here

Q: Why i get typearea warning? what does it mean?

Best Answer

Updated \belowcaptionskip (default is 0pt) to a negative value:

enter image description here

On the left is the default; on the right is \setlength{\belowcaptionskip}{-\baselineskip}.

Related Question