%20im%20Absatz%20in%20der%20Bildunterschrift.png)
Ich denke, dass die Fehlerquelle „Underfull \hbox (badness 10000) in paragraph“ im MWE ein unzureichender Text ist.
\documentclass{llncs}
\usepackage{graphicx}
\begin{document}
\begin{figure}[t]
\begin{minipage}[b]{0.25\textwidth}
\centering
\caption{Interface among Processor, RAM and TPM in a Hybrid System}
\end{minipage}
\end{figure}
\end{document}
Antwort1
Das Einfügen langer Wörter in eine schmale Spalte kann schwierig sein. Sie könnten Tex ein wenig helfen:
\documentclass{llncs}
\usepackage{graphicx}
\begin{document}
\begin{figure}[t]
\begin{minipage}[b]{0.25\textwidth}
\centering
\caption
[Interface among Processor, RAM and TPM in a Hybrid System]
{\protect\raggedright Interface among Processor, RAM and TPM in a Hybrid System}
\end{minipage}
\end{figure}
\end{document}