Forum How do I...?

Two question about PDF from multiple documents

fbrzvnrnd
Hi,

1)
I'm creating a PDF from multiple files. I simply write:

@page { size: 16.5cm 24cm; 
margin:1cm;
	       @bottom-center  {content: counter(page);}
	       
	       }


in CSS. I got a page-break at the start of every source file. It is possibile to have the page flow without the page-break?

2)
I put a:

h3:after { counter-increment: section;
		content:" ("counter(section)")"}


in css. I see the counter is reset for each html document, so I have not a real counter increment.
Is there a way to do this, or I'm missing something?

Thank you.


f.
mikeday
Currently multiple input files are always separate by page breaks, so you would need to concatenate them all into a single input file. This would also simplify the counter situation. (For XML documents you could also consider using XInclude).
fbrzvnrnd
Thank you for the answer!