다음 코드를 컴파일하려고 합니다.
\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}
pdflatex를 사용합니다.
컴파일하는 동안 다음과 같은 오류가 발생합니다.
Overfull \hbox (6.71255pt too wide) in paragraph at lines 28--29
[][]
Underfull \hbox (badness 10000) in paragraph at lines 28--29
여기서는 이유를 알 수 없습니다!
답변1
이는 overfull \hbox
줄 끝의 공백 때문입니다. 이러한 줄 끝 부분에는 주석을 달아야 합니다.
그 underfull \hbox
이유는 \\
단락을 위조하는 데 절대 사용되어서는 안 되기 때문입니다.
\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}