i want to position a flowfram-box dynamically on the same page as the caption. So that the box is allways next to the a certain heading as the document is growing.
In my following example the boxes are layong on top of each other on the second page.
How can I position the boxes only one time next to a certain heading?
\documentclass[10pt,a4paper,landscape]{article} \usepackage[utf8]{inputenc} \usepackage{caption} \usepackage{graphicx} \usepackage{lipsum} \usepackage{flowfram} \usepackage[left=10cm,right=1cm,top=1cm,bottom=2cm]{geometry} \author{} \title{} \setcounter{secnumdepth}{-1} \parindent0pt \twocolumn\begin{document}
\section{HEADING 1} \subsection{HEADING 1} \newdynamicframe[\thepage]{0.33\textwidth}{\textheight}{-240pt}{0pt}[Lastannahmen] \begin{dynamiccontents}{Lastannahmen} next to heading 1 only on the page of heading 1 \end{dynamiccontents}
\lipsum \newpage
\section{HEADING2}
\newdynamicframe[\thepage]{0.4\textwidth}{\textheight}{-240pt}{0pt}[Lastannahmen2] \begin{dynamiccontents}{Lastannahmen2} next to heading 2 \end{dynamiccontents} \lipsum
\newpage \end{document}$
