imagine following situation: We have a results section that starts after another section at an arbitrary point of a page. The results are illustrated with figures which are exactly one page high and about half page wide. I would like one figure on the side of each page beginning with the first complete page of the results section until all figures are shown. The text of the result section shall begin just with the section with full page width and then continue to float besides the figures and after the figures it should continue on full page width. I drew the formatting I am dreaming of and attached it to the post.
I thought about parcolumn but it seems impossible to to have have one column to start and end with full page width while being reduced to half width while the other column is filled.
A more promising idea was to use wrapfigure. But unfortunately it I could not let the same text wrap several figures. See the following example:
Code: Select all
\documentclass{article}
\usepackage{wrapfig}
\usepackage{blindtext}
\begin{document}
This is the text of the presvious section,
\blindtext
\section*{Results}
\begin{wrapfigure}{RH}{0.4\textwidth}
\rule{5cm}{18cm}\\
\caption{Caption}
\end{wrapfigure}
\begin{wrapfigure}{RH}{0.4\textwidth}
\rule{5cm}{18cm}\\
\caption{Caption}
\end{wrapfigure}
Thats the text that should start with the results section with full page with, float besides the figures and continue on full page width after the figures are shown,
\Blindtext
\end{document}
http://www.golatex.de/mehrere-seiten-gr ... 10618.html
but nobody could help me (when somebody will answer there unexpectedly, I will let you know). Although I am convinced that there must be a simple solution, please tell me also if I couldn't describe my problem or if you think that my expectations to LaTeX are too high, I can cope with that

Please share any ideas and thank you very much for your time,
Igor Igel