I have 2-column text with a set of images in the middle of it.
I want to contain this set of images to a single page that the text wraps around.
For this I've created a named page and styled the images and it works well.
But, as Mike outlined (e.g. here and here), named pages are always preceded and followed by a page break.
In my specific use case this leads to the page before the named page to just contain a few lines of text (breaking after a paragraph).
How can I ensure that text wraps around a named page as if it was a floated element, i.e. those few lines go on the page following the named page?
Something like
which lets an element float as a full page?
I want to contain this set of images to a single page that the text wraps around.
For this I've created a named page and styled the images and it works well.
But, as Mike outlined (e.g. here and here), named pages are always preceded and followed by a page break.
In my specific use case this leads to the page before the named page to just contain a few lines of text (breaking after a paragraph).
How can I ensure that text wraps around a named page as if it was a floated element, i.e. those few lines go on the page following the named page?
Something like
float: page;
which lets an element float as a full page?