DEPRECATION WARNING

This documentation is not using the current rendering mechanism and is probably outdated. The extension maintainer should switch to the new system. Details on how to use the rendering mechanism can be found here.

PageBreakViewHelperΒΆ

Adds a page break within a single page. Can be used for conditional page breaks for instance.

<pdf:page>
        Page 1
        <pdf:pageBreak />
        Page 2

        Conditional page break
        <f:if condition="{someCondition}">
                <pdf:pageBreak />
        </f:if>
</pdf:page>