修復 hbox floatrow 過滿問題

修復 hbox floatrow 過滿問題

當使用floatrow包來佈局圖形並將標題放在一邊,我收到了一個過滿的\hbox錯誤。

Overfull \hbox (3.33331pt too wide) in paragraph at lines 23--23

如果我設定\FBwidth-1每個\ffigbox錯誤都會消失。哈克?

我有很多數字都將以這種方式完成,那麼正確的方法是什麼才能\subfloatrow避免這種情況發生?

輸出

\documentclass[draft]{article}
\usepackage{graphicx}
\usepackage{floatrow}
\usepackage{caption}
\usepackage{subcaption}
\usepackage{lipsum}
\usepackage{calc}
\begin{document}

\lipsum[1]

\begin{figure}
  \thisfloatsetup{valign=t,heightadjust=all}
  \fcapside[0.7\textwidth]{\fboxsep-1pt%
    \begin{subfloatrow}[3]
      \ffigbox[\FBwidth]{\caption[]{}\label{fig:test15a}}{\includegraphics[width=\hsize]{sample1}}%
      \ffigbox[\FBwidth]{\caption[]{}\label{fig:test15b}}{\includegraphics[width=\hsize]{sample2}}%
      \ffigbox[\FBwidth]{\caption[]{}\label{fig:test15b}}{\includegraphics[width=\hsize]{sample3}}%
    \end{subfloatrow}
  }{
    \caption{Horizontal sub-figures, top aligned}%
    \label{fig:test15}%
  }
\end{figure}

\end{document}

答案1

你錯過了一個%

   \begin{subfloatrow}[3]%<<<<<<<<<<<<<<<<<

相關內容