修复 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]%<<<<<<<<<<<<<<<<<

相关内容