两个迷你页面并排,标题加粗,内容不全警告

两个迷你页面并排,标题加粗,内容不全警告

有没有办法修复main.tex:11: Underfull \hbox (badness 2409) (page 1)以下main.tex文件?

\documentclass[12pt]{article}
\usepackage{lipsum}
\begin{document}
\begin{figure}[!t]
  \centering
  \begin{minipage}[t]{.48\textwidth}
    \centering
    \caption[Top1 \emph{vs.}\ network]{
      \textbf{Top1 \emph{vs.}\ network.}
      \lipsum[1]
    }
    \label{fig:top1_vs_net}
  \end{minipage}\hfill
  \begin{minipage}[t]{.48\textwidth}
    \centering
    \caption[Top1 \emph{vs.}\ operations, size $\propto$ parameters]{
      \textbf{Top1 \emph{vs.}\ operations, size $\propto$ parameters.}
      \lipsum[1]
    }
    \label{fig:top1_vs_ops}
  \end{minipage}
\end{figure}
\end{document}

LaTeX 输出

我相信警告与图 1 的标题“title”有关。无论如何,如何调试这些内容?

答案1

这是因为标题的行宽较小。您可以帮助 LaTeX 连字,也可以将其添加到序言中:

\usepackage{caption} 
\captionsetup[figure]{justification=RaggedRight}

因此当 LaTeX 无法找到正确的断点时,标题行将会变得参差不齐:

在此处输入图片描述

相关内容