【发布时间】:2013-01-14 00:21:58
【问题描述】:
我正在尝试在一系列概念文档之间建立关系。因此,给定三个文档“A”、“B”和“C”,我希望它们分别显示如下内容:
一个...
相关概念
- B
- C
由于某种原因,以下操作无法正常工作:
<reltable>
<relrow>
<relcell>
<topicgroup collection-type="family">
<topicref href="topics/a.dita" type="concept"/>
<topicref href="topics/b.dita" type="concept"/>
<topicref href="topics/c.dita" type="concept"/>
</topicgroup>
</relcell>
</relrow>
</reltable>
以下是可行的,但这肯定是不正确的:
<reltable>
<relrow>
<relcell>
<topicgroup collection-type="family">
<topicref href="topics/a.dita" type="concept"/>
<topicref href="topics/b.dita" type="concept"/>
<topicref href="topics/c.dita" type="concept"/>
</topicgroup>
</relcell>
<relcell>
<topicgroup collection-type="family">
<topicref href="topics/a.dita" type="concept"/>
<topicref href="topics/b.dita" type="concept"/>
<topicref href="topics/c.dita" type="concept"/>
</topicgroup>
</relcell>
</relrow>
</reltable>
我正在使用 XMLMind 的开源 DITA Converter。
【问题讨论】:
标签: xml documentation dita