지나치게 가득 찬 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]%<<<<<<<<<<<<<<<<<

관련 정보