Docbook-xslt 章节 ID 匹配
我想编写一个 xslt 规则,如果它与某个章节 ID 匹配,它将在该部分上将 autolabel 设置为零。
在伪代码中:
IF CHAPTER == LOGBOOK
SECTION.AUTOLABEL = 0
ELSE
SECTION.AUTOLABEL = 1
ENDIF
但是在阅读了 docbook xsl 网站和 docbook xsl 参考之后,我仍然无法弄清楚如何做到这一点。 也许有人可以把我推向正确的方向,因为我是 docbook 和 xls(t) 的新手
亲切的问候, 杰瑞
I would like to write a xslt rule if it matches a certain chapter ID that it sets autolabel to zero on the section.
in pseudo code:
IF CHAPTER == LOGBOOK
SECTION.AUTOLABEL = 0
ELSE
SECTION.AUTOLABEL = 1
ENDIF
But after reading the docbook xsl website and docbook xsl reference i'm still unable to figure out how to do it.
Maybe someone can push me in the right direction, because i'm new in docbook and xls(t)
Kind regards,
Jerry
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要使用
xsl:when
来测试条件。这假设当前节点有一个
chapter
和logbook
子节点。You need to use
xsl:when
to test conditions.This assumes that the current node has a
chapter
andlogbook
child nodes.