Given the table
\documentclass{scrartcl}
\usepackage{booktabs,caption}
\begin{document}
\begin{table}[htb]
\centering
\caption{Test table}
\begin{tabular}{lll}
\toprule
abc & def & ghi \ \midrule
abc1 & def2 & ghi3 \ \bottomrule
\end{tabular}
\caption*{Source: xyz}
\end{table}
\end{document}
How can I change the space before and after the starred caption (from the caption package) without affecting the unstarred caption?
And is this possible for any (un)starred command to be changed without affecting the other?
\end{tabular}\\[2mm]Source: xyz\end{table}would suffice? This works also for figures, and possibly also for your custom float. – Marijn Jan 03 '22 at 19:58