I want to add a flipbook to my document. Everything seems to work (adding the write pictures. The only thing I'm looking for is making the text flow on every page around the image inserted with fancyfoot. Here's what I got.
\documentclass[twoside]{report}
\usepackage{fancyhdr}
\newcounter{flipbook_counter}
\fancyfoot[RO]{\setlength{\unitlength}{1mm}
\begin{picture}(0,-10)
\put(-24,-14){\includegraphics[width=5cm]{./flipbook/snia_frame\arabic{flipbook_counter}.png}}
\end{picture}
\stepcounter{flipbook_counter}
}
\begin{document}
\end{document}
MEW:
\documentclass[10pt,twoside,openright, pdftex]{report}
\usepackage{lipsum}
\usepackage{blindtext}
\usepackage[english]{babel}
\usepackage{fancyhdr}
\newcounter{flipbook_counter}
\pagestyle{fancy}
\fancyhead[LO]{\usefont{OT1}{qbk}{m}{n}\selectfont \nouppercase\rightmark}
\fancyhead[RE]{\usefont{OT1}{qbk}{m}{n}\selectfont \nouppercase\leftmark}
\fancyhead[LE]{\usefont{OT1}{qbk}{m}{n}\selectfont \nouppercase\thepage}
\fancyhead[RO]{\usefont{OT1}{qbk}{m}{n}\selectfont \nouppercase\thepage}
\usepackage[twoside=true]{geometry}
\geometry{%
driver=pdftex,%
b5paper,%
includehead,%
includefoot,%
twoside,%
inner=2cm,%
outer=1cm,%
vmargin={1cm,1cm},%
driver=pdftex%
}
\fancyfoot[RO]{\setlength{\unitlength}{1mm}
\begin{picture}(0,-10)
\put(-24,-14){\rule{5cm}{3cm}}
\end{picture}
\stepcounter{flipbook_counter}
}
\begin{document}
\Blinddocument
\end{document}

\documentclassand the appropriate packages so that those trying to help don't have to recreate it. – Peter Grill Nov 29 '11 at 22:40\documentclass,\begin{document},\end{document}and any packages so that we can just cut and paste to see what you are talking about as opposed to reading code. – Peter Grill Nov 29 '11 at 23:55fancy:\pagestyle{fancy}and use\usepackage{graphicx}. So, if I understand correctly, you have a full document and have some pictures you're inserting in the footer and you want the main document elements to wrap around the footer image? – Werner Nov 30 '11 at 00:32