[Tex/LaTex] Floating image spanning over newpage

graphicspage-breaking

I m wiring one report in which i need to add images in each section. Each section start on new page but i found when there is not enough space on one section, image float to another section and there is no more new page. How can i keep image within the section so that it can not float to next section (page break).

   <Section1> 
       some text xyz
       image1
   </Section1>
   \newpage
   <Section2> 
       Some Text ABC
       image2
   </Section2>

In the above example is image1 is bigger than space left for section1, it floats to section2 and image remove pagebreak. How can i control it?

Best Answer

Using \clearpage (\cleardoublepage) instead of \newpage forces floats to appear.