그림 캡션 단락의 Underfull\hbox(badness 10000)

그림 캡션 단락의 Underfull\hbox(badness 10000)

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

좁은 열에 긴 단어를 설정하는 것은 까다로울 수 있습니다. 텍스트를 약간 도울 수 있습니다.

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

관련 정보