Por que estou recebendo erros insuficientes e excessivos?

Por que estou recebendo erros insuficientes e excessivos?

Estou tentando compilar o seguinte código:

\documentclass{article}
\usepackage{graphicx,algpseudocode,algorithm,multirow,hyperref,subfig,cancel,natbib,epstopdf,xspace}

\begin{document}

\clubpenalty=10000
\widowpenalty = 10000

\begin{table}
%\newcommand{\tabcolwidth}[1]{\parbox[c]{3cm}{\centering #1}}
\renewcommand\multirowsetup{\centering}
\caption{caption}

\subfloat
{
\resizebox{1.0\linewidth}{!}
{
\begin{tabular}{lrrrr}
\hline
\multirow{2}{*}{A} & \multicolumn{4}{c}{B} \\
  & $20 \%$ & $40 \%$ & $60 \%$ & $80 \%$ \\
\hline
Alg1 & $48.21$ & $48.64$ & $51.13$ & $52.46$ \\
Alg2 & $42.72$ & $46.31$ & $48.56$  & $51.64$ \\
\hline
\end{tabular}
}
}\\

\end{table}

\end{document}

usando pdflatex.

Estou recebendo os seguintes erros durante a compilação:

Overfull \hbox (6.71255pt too wide) in paragraph at lines 28--29
[][] 

Underfull \hbox (badness 10000) in paragraph at lines 28--29

Não consigo descobrir o motivo aqui!

Responder1

Isso overfull \hboxse deve aos espaços em branco nos finais das linhas. Você deve comentar esses finais de linha.

A underfull \hboxrazão é que \\nunca deve ser usado para falsificar um parágrafo:

\documentclass{article}
\usepackage{graphicx,multirow,subfig,hyperref}% Load only used packages

% settings moved to preamble
\clubpenalty=10000 
\widowpenalty = 10000

\begin{document}

\begin{table}
%\newcommand{\tabcolwidth}[1]{\parbox[c]{3cm}{\centering #1}}
\renewcommand\multirowsetup{\centering}
\caption{caption}

\subfloat{%
  \resizebox{1.0\linewidth}{!}{%
    \begin{tabular}{lrrrr}
      \hline
      \multirow{2}{*}{A} & \multicolumn{4}{c}{B} \\
                         & $20 \%$ & $40 \%$ & $60 \%$ & $80 \%$ \\
      \hline
      Alg1 & $48.21$ & $48.64$ & $51.13$ & $52.46$ \\
      Alg2 & $42.72$ & $46.31$ & $48.56$  & $51.64$ \\
      \hline
    \end{tabular}%
  }%
}

\end{table}

informação relacionada