
我認為 MWE 中錯誤「Underfull \hbox (badness 10000) in paragraph」的根源是文本不足。
\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}