I want to know how i can create document with different format pages. Example, i want add to pdf document format of A4 few pages format's A3. That is, in my document pages are A4, A3 then some, and then again A4.
|A4|
|A4|
| |
|A3 |
|A4|
|A4|
| |
|A3 |
If this i can't do this when i'm creating PDF, maybe i can add A3 in existing document and how?
How can i do this?
Now I am using the following construction for creating PDf:
iTextSharp.text.Rectangle rec = new iTextSharp.text.Rectangle(PageSize.A4);
Document doc = new Document(rec, 72, 36, 100, 150);
doc.Open();
...
...
doc.Close();