I'm typesetting a book with two flows of text.
Text 1 is regular text. Text 2 I would like it to flow through defined frames at the bottom of the page, all of the same width but of variable height.
I know how to do this with the FLOWFRAM package using static frames. I could also do it in other ways. But I do not want to manually break my text. I would like the text to flow through the frames (dynamic frames) at the bottom of the page, while another text flow on the top.
This is easy to obtain with indesign obviously. Is there a way to do it in Latex? Please see my MWE. I can make a text flow in the bottom frames, but how can I make another text flow in the top part of the page?
\documentclass[a5paper]{book}
\usepackage{lipsum}
\usepackage{flowfram}
\newflowframe [1-2]
{\textwidth}
{7cm}
{0\textwidth}
{0\textheight}
[Frame1]
\newflowframe [3-5]
{\textwidth}
{3cm}
{0\textwidth}
{0\textheight}
[Frame2]
\newflowframe [6-7]
{\textwidth}
{5cm}
{0\textwidth}
{0\textheight}
[Frame3]
\begin{document}
\lipsum{1}
\end{document}

[1]to show the last part of theatext at the beginning. If you move the definition before of any other, it will start with "Lore ipsum ..." no matter of the frame name. Moreover, you can set frames with static contents (example). – Fran Apr 18 '23 at 17:15