I noticed that the figure boxes have disappeared from figures placed using the floatrow package. This used to work, so I assume an update broke something.
I'm using MikTex 2.7 with all updates on Windows XP.
Here is a sample code that demonstrates the problem. It tries to show the first two pages of any pdf file you specify in boxes. The pdf pages appear, but not the boxes.
Any help is greatly appreciated!
Code: Select all
\documentclass{article}
\RequirePackage{floatrow}
%\floatsetup[figure]{style=boxed}
\RequirePackage{graphicx}
\begin{document}
% put a box around these next floats - NO LONGER WORKS!
\thisfloatsetup{style=boxed}
\begin{figure}[h]
\begin{floatrow}
\ffigbox
{
\caption{page 1.}
}
{
\includegraphics[page=1,width=\linewidth]{any_pdf_file}
}
\ffigbox
{
\caption{Page 2.}
}
{
\includegraphics[page=2,width=\linewidth]{any_pdf_file}
}
\end{floatrow}
\end{figure}
\end{document}