I have a square logo placed on the bottom right of every page (placed using absolute positioning and tikz) and it's fairly big. I want it so that text flows / wraps around the logo - is it possible to this?
For example, I want to have something like the following where (a is text and l is logo)
+--------------+
| aaaaaaaaaaaa |
| aaaaaaaaaaaa |
| aaaaaaaaaaaa |
| aaaaa +------+
| aaaaa | llll |
| aaaaa | llll |
+------ +------+
Edit, here is an example of what I have with overlapping text and logo:
\documentclass{article}
\usepackage[letterpaper,margin=1in]{geometry}
\usepackage{tikz}
\usepackage{lipsum}
\begin{document}
\begin{tikzpicture}[remember picture,overlay]
\node [shift={(-2 in, 2 in)}] at (current page.south east) {
\rule{2in}{2in}
};
\end{tikzpicture}
\lipsum[1-8]
\end{document}
This generates the following document

You will notice that the block on the bottom right overwrites some of the text and I would like to avoid that by having it wrap around it. The logo is large, so I do not want it taking up the footer space.
