【发布时间】:2019-05-31 14:31:56
【问题描述】:
我正在尝试在 sec-type='reading' 的部分中查找下一个实例。
XML 示例:
<?xml version="1.0" encoding="US-ASCII"?>
<book>
<sec sec-type="reading">
<title>Section 1</title>
<p>Sample <bold>Bold</bold>Text <fn><label>1</label></fn> Some more text</p>
<!-- more variations of stuff at various levels -->
<sec>
<title>Section 1.1</title>
<p>Another paragraph with a footnote <fn><label>2</label></fn></p>
</sec>
<sec>
<title>Section 1.2</title>
<p>Another paragraph with a footnote <fn><label>3</label></fn></p>
</sec>
</sec>
<sec sec-type="reading">
<title>Section 2</title>
<p>Sample <bold>Bold</bold>Text <fn><label>6</label></fn> Some more text</p>
<!-- more variations of stuff at various levels -->
<sec>
<title>Section 2.1</title>
<p>Another paragraph with a footnote <fn><label>8</label></fn></p>
</sec>
<sec>
<title>Section 2.2</title>
<p>Another paragraph with a footnote <fn><label>9</label></fn></p>
</sec>
</sec>
</book>
目的是查看 FN 标签是否在一个部分内按顺序排列。我用 6-9 对第二部分进行了编号,以便更容易查看它是否有效。
这就是我想要的:
Footnote 1 [Next: 2]
Footnote 2 [Next: 3]
Footnote 3 [Next: ]
Footnote 6 [Next: 8]
Footnote 8 [Next: 9]
Footnote 9 [Next: ]
最终目标是为Footnote 6 [Next: 8]返回警告
这是我目前得到的schematron。这给了我:
Footnote 1 [Next: 2]
Footnote 2 [Next: 3]
**Footnote 3 [Next: 6]**
Footnote 6 [Next: 8]
Footnote 8 [Next: 9]
Footnote 9 [Next: ]
它找到脚注的下一个实例。但是,我不希望它跨越这些部分 - 所以 Footnote 3 [Next: 6] 是错误的。
<?xml version="1.0" encoding="UTF-8"?>
<schema xmlns="http://purl.oclc.org/dsdl/schematron"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
queryBinding="xslt2" >
<!--check if footnotes are sequential within a reading -->
<pattern id="footnote-sequential">
<rule context="fn">
<let name="next" value="following::fn[1]/label/text()"/>
<assert test="number(label/text()) > 40">
Footnote <value-of select='label'/>
[Next: <value-of select="$next"/>]
</assert>
</rule>
</pattern>
</schema>
注意:断言中的number(label/text()) > 40 可以捕捉此刻的一切。最终会变成number(current)+1 != number(next)
我得到的最接近的是ancestor::sec[@sec-type='reading']//following::fn[1]/label/text() - 但这会丢失“下一个”并给我这样奇怪的结果:
Footnote 1 [Next: 1236]
Footnote 2 [Next: 1236]
Footnote 3 [Next: 1236]
Footnote 6 [Next: 689]
Footnote 8 [Next: 689]
Footnote 9 [Next: 689]
【问题讨论】:
标签: xpath schematron