図のキャプションの段落内の \hbox が不足しています (不良度 10000)

図のキャプションの段落内の \hbox が不足しています (不良度 10000)

MWE の「段落内の \hbox が不足しています (badness 10000)」というエラーの原因は、テキストの不足にあると思います。

\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}

答え1

長い単語を狭い列に設定するのは難しい場合があります。少し工夫すれば tex を助けられます:

\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}

関連情報