dita-topic标题的单独封面

时间:2019-06-12 16:18:07

标签: dita

我正在创建一个dita主题文件(xyz.dita),其中嵌套了其他dita个主题,但是我需要使用该主题的主标题来创建单独的封面..

我需要生成一个仅包含标题的单独封面。.

它的基本结构是这样的:

<topic id="topic_id">
    <title>Title to be in Cover Page</title>

    <topic>
         <title>normal title</title>
    .
    .
    </topic>

    <topic>
    .
    .
    </topic>

</topic>

1 个答案:

答案 0 :(得分:0)

我只是通过在插件中播放其他一些脚本文件找到了解决方案。

所以,这就是...

<xsl:template match="topic[@id = 'topic_id']">
  <fo:page-sequence master-reference="front-matter-first">
    <fo:flow flow-name="xsl-region-body">
      <xsl:apply-templates select="title"/>
    </fo:block>
  </fo:flow>
 </fo:page-sequence>

 <fo:page-sequence master-reference="body-odd">
    <fo:flow flow-name="xsl-region-body">
       <xsl:apply-templates select="//topic/topic"/>
     </fo:flow>
  </fo:page-sequence>
</xsl:template>