speedata / publisher

speedata Publisher - a professional database Publishing system
https://www.speedata.de/
GNU Affero General Public License v3.0
292 stars 36 forks source link

Strange behaviour with SavePages and Grid #592

Closed pgundlach closed 6 days ago

pgundlach commented 6 days ago

4.19.12

<?xml version="1.0" encoding="UTF-8"?>

<Layout xmlns="urn:speedata.de:2009/publisher/en"
    xmlns:sd="urn:speedata:2009/publisher/functions/en">
    <Record element="data">
        <InsertPages name="toc" pages="1" />
        <ClearPage />

        <PlaceObject allocate="yes" column="0mm" row="0mm">
            <Box height="297mm" width="210mm" background-color="-" />
        </PlaceObject>

        <SetGrid nx="2" ny="3" />

        <Loop select="13">
            <PlaceObject>
                <Box height="1" width="1" background-color="lightgreen" />
            </PlaceObject>
        </Loop>

        <SavePages name="toc">
            <PlaceObject>
                <Textblock>
                    <Paragraph>
                        <Value>hello toc!</Value>
                    </Paragraph>
                </Textblock>
            </PlaceObject>
        </SavePages>

        <Loop select="4">
            <PlaceObject>
                <Textblock>
                    <Paragraph>
                        <Value>hello world</Value>
                    </Paragraph>
                </Textblock>
            </PlaceObject>
        </Loop>
    </Record>
</Layout>
greenhw