I am writing a paper using the llncs style (Springer lecture notes for computer science). Using the default formatting, the distance between and the caption and the caption and the table is very big, 16 resp. 9 mm onscreen:

The setting shouldn't be like that. Their own example of a text set in the llncs style (using Word) has a much shorter distance. The proceedings of the same conference from previous years are in the same style, and they all have the short distance. My professor, who is on the program committee, agrees that it should have the short distance. Below, the distance from their own example:

I tried reducing the space above and below the caption using the commands
\addtolength{\belowcaptionskip}{-5pt}
\addtolength{\abovecaptionskip}{-12pt}
but nothing changed at all. Even if I set the distance to ridiculous -100mm, there is absolutely no change to the way my captions look. Using \setlength instead of \addtolength doesn't help. When I use article instead of llncs as a document style, the commands work just as intended. So it must be a setting in the llncs package. How do I override the setting, without changing the llncs package?
An example for the preamble and a table would be:
\documentclass{llncs}
\usepackage{array}
\usepackage{colortbl}
\usepackage{rotating}
\usepackage{placeins}
\setcounter{secnumdepth}{3}
\addtolength{\textfloatsep}{-3mm}
\addtolength{\belowcaptionskip}{-100pt}
\addtolength{\abovecaptionskip}{-100pt}
\begin{document}
This is some filler text representing
a paragraph above the table
\begin{table}[!htb]
\caption{Examples for requirement the target users preferred}
\label{tab:features_liked}
\begin{center}
\begin{tabular}{|p{90mm} | p{30mm}|}
\hline
Requirement & Relevant value \\
\hline
Some requirement & A value \\
\hline
Another requirement & Another value \\
\hline
\end{tabular}
\end{center}
\end{table}
\end{document}
centergroup? – Frederick Nord Jul 05 '22 at 19:52