al3xicon
10/05/2022, 9:52 PM#page1
before? Was able to produce a separate first page header from the rest of the pages this way. No solution for 'print X only on last page' unfortunately yet, but it's more than I thought BFO could handle!David B
10/06/2022, 8:12 PM#page1
defined, and also #page2
through #page20
Do you know how to define an arbitrary number of pages? So one style for page 1, and a different style for all other pagesal3xicon
10/06/2022, 8:14 PMal3xicon
10/06/2022, 8:14 PMDavid B
10/06/2022, 8:14 PMwbermudo
10/07/2022, 1:15 AMDavid B
10/07/2022, 1:19 AMDavid B
10/07/2022, 1:20 AMwbermudo
10/07/2022, 1:23 AMwbermudo
10/07/2022, 1:24 AMDavid B
10/07/2022, 1:24 AMwbermudo
10/07/2022, 1:26 AMCatherine Fray
10/10/2022, 3:56 PMwbermudo
10/10/2022, 4:08 PM<pdf>
<head>
<macrolist>
<macro id="common-header">This is the header for all pages except remittance slip
</macro>
<macro id="remittance-slip">This is the header of your remittance slip
</macro>
</macrolist>
</head>
<body header="common-header">
The content of the Invoice here...
<pbr header="remittance-slip" />
This will show as another page, on your PDF. Where you can use it as your remittance slip or like T&C pages. Note: You can also use <pdfset> to achieve this, but obviously there is a pros and cons doing that.
</body>
</pdf>
PBR tag forces another page on your output where you can control the header (see header attribute that reference a different macro id.
Hope that helps..Catherine Fray
10/10/2022, 4:08 PMwbermudo
10/10/2022, 4:09 PM