Hallo AndreasZ,
Ich glaube, ich sehe das Übel gerade. Mein Apache FOP 1.1 (mehr habe/darf ich auch nicht) scheint nur XSLT 1.0 zu verstehen. Damit ist der distinct-Befehl nix. Verdammt!
Mit XSLT 1.0 lässt es sich so umsetzen (Demo mit Ausgabe über HTML-Listen):
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" encoding="UTF-8" indent="yes"/>
<xsl:template match="root">
<html>
<head>
<title>Test</title>
</head>
<body>
<xsl:apply-templates select="x"/>
</body>
</html>
</xsl:template>
<xsl:template match="x">
<ul>
<xsl:for-each select="SECTOR/ELEVATION[not(. = ../preceding-sibling::SECTOR/ELEVATION)]">
<li><xsl:value-of select="."/></li>
</xsl:for-each>
</ul>
</xsl:template>
</xsl:stylesheet>
Relevante Ausgabe:
<ul>
<li>106</li>
<li>61</li>
</ul>
<ul>
<li>19</li>
</ul>
Das lässt sich entsprechend auf die Zielstruktur übertragen (für FO mit fo:block / fo:inline).
Grüße,
Thomas