Floatrow:\floatbox 用于单个元素浮点数

Floatrow:\floatbox 用于单个元素浮点数

在单元素浮点环境中是否需要使用\floatbox( \ffbox, , ...)?虽然\ttbox浮行在所有示例中都使用它,我无法区分带包装器和不带\ffbox包装器的图像。如果浮动环境只包含一个元素,是否有必要使用包装器?

梅威瑟:

\documentclass{article}
\usepackage{floatrow}
\usepackage{graphicx}
\floatsetup[figure]{style=Ruled}
\begin{document}
    \begin{figure}
        \ffigbox{ % Is this unneccessary verbosity? Or does it do some magic I miss?
            \includegraphics{example-image-a}
            \caption{A}
        }{}
    \end{figure}

    \begin{figure}
        \includegraphics{example-image-b}
        \caption{B}
    \end{figure}
\end{document}

文档是否过时了,毕竟它指出,分隔内容和标题的宏的两个参数是出于历史原因而存在的,而您如何在它们之间分配内容并不重要。文档中的示例是否可能自第二个参数过时以来一直没有更新?

相关内容