as the title states, my question is about pandocs md to pdf.
When I convert a markdown like
# Title
...... text that is about a 3/4 page

Some more text
then the text after the image "some more text" is displayed on the first page and the image gets pushed to the second page, which changes the order of my content.
What i can do is something like
# Title
...... text that is about a 3/4 page
\newpage

Some more text
But that is very annoying to maintain, because when i want to add content to the start afterwards i have to check if the \newpage
is still neccessary there of if i have to add another one somewhere else.
Is there any real solution for this? Maybe a setting in the YAML header?
I have googled alot about this but didnt come across a solution.
Thanks :)