<br><font size=2 face="sans-serif">My personal pick for version 4.17 would
be table markers. &nbsp;We currently generate reports that are grouped,
and our customers require that we add the word &quot;(continued)&quot;
to the group heading when it spans more that one page. &nbsp;For example
we may have a report that is grouped by state. &nbsp;The column headings
are displayed by an outer table, and each state is a separate table embedded
within the first table. &nbsp;The column heading for the embedded table
is the state name which spans all columns. &nbsp;If the data for Alabama
spanned more that one page, the heading on the first page would be &quot;Alabama&quot;
and &quot;Alabama (continued)&quot; on all subsequent pages. &nbsp;</font>
<br>
<br><font size=2 face="sans-serif">We are currently handling adding the
&quot;continued&quot; using rx:pinpoint and xslt that gets run on the XEP
intermediate format. &nbsp;Although this solution works, it is not pretty.
&nbsp;There are instances where I have to change font characteristics (family,
size, weight, color...) and then make sure to change them back before moving
on. &nbsp;And the way that rx:pinpoint works is confusing. &nbsp;There
seems to be no rhyme or reason to the values that are assigned to x and
y. &nbsp;It would be really nice if the values of x and y were related
to the &lt;xep:text&gt; elements that reside in the same fo:block as the
rx;pinpoint.</font>
<br>
<br><font size=2 face="sans-serif">In this case it would be helpful if
x and y matched the x and y values of the first xep:text element that follows
the xep:pinpoint.</font>
<br><font size=2 face="sans-serif">&lt;fo:block&gt;</font>
<br><font size=2 face="sans-serif">&nbsp; &nbsp; &nbsp; &nbsp; &lt;rx:pinpoint
value=&quot;{text()}&quot;/&gt;</font>
<br><font size=2 face="sans-serif">&nbsp; &nbsp; &nbsp; &nbsp; &lt;xsl:value-of
select=&quot;text()&quot;/&gt;</font>
<br><font size=2 face="sans-serif">&lt;/fo:block&gt;</font>
<br>
<br><font size=2 face="sans-serif">In this case it would be helpful if
x and y pointed to the end of the previous xep:text element &nbsp;(x +
width). &nbsp;This would be the position at which you could start appending
new text.</font>
<br><font size=2 face="sans-serif">&lt;fo:block&gt;</font>
<br><font size=2 face="sans-serif">&nbsp; &nbsp; &nbsp; &nbsp; &lt;xsl:value-of
select=&quot;text()&quot;/&gt;</font>
<br><font size=2 face="sans-serif">&nbsp; &nbsp; &nbsp; &nbsp; &lt;rx:pinpoint
value=&quot;{text()}&quot;/&gt;</font>
<br><font size=2 face="sans-serif">&lt;/fo:block&gt;</font>
<br>
<br>