I am creating a pdf report file using a xsl. On the header I need a header image and the report title. I was able to make it. Now the problem is that rest of the report is overriding the image. I tried adding some blank row but its not working for me.
In xsl Header has a table in first row I am adding the Report Name and second row I am adding the image.
With Apache FOP, in order to output a space like
in HTML you would have to insert .So if you want to insert a blank line, you just have to write a
fo:blockwhose contents is like thisEdit
 always worked for me, but you can also try with to see if it works.Otherwise you can use
fo:leaderto output a blank line, like this<fo:leader>without any attributes will generate an empty line that will fit the whole page width, generating an empty line.There is also an other way which involves specifying the amount of space needed before your block of text with the
space-beforeattribute, like this