[Tex/LaTex] local options for floatrow

floatrow

I am using floatrow and have a global setup with \floatsetup. However I have one subfloatrow in my document which requires different settings. How do I locally adjust the \floatsetup/options for one float?

Best Answer

The command \floatsetup allows the user to specify some options. This specification is always local.

If you do the setup in your preamble the setup is done for the whole document.

To change the setup for a single subfloat you can use \floatsetup inside a group. The floating objects are always a group so you can change \floatsetup inside the object without any effects to other objects.

\usepackage{floatrow}
\floatsetup{....}

.....

\begin{figure}
\floatsetup{...}% all these settings are local to this floating object
\subfloatrow

\end{figure}