使用TEI,试图验证这个文档,但由于某些原因它不起作用,我一直在使用TEI网站上的元素和所有指南,但我只是不明白它。任何帮助深表感谢。我会评论问题所在。我有一个有效的标题和命名空间,所以它可以解决以下问题。
<text>
<pb n ="1"/>
<!-- pp/6/122(2)-->
<front>
<titlePage>
<castList> <<First problem is here, says it is an invalid starter element, though it is not starting, titlePagee and front are.
<castItem>
<role xml:id="b">Belle</role>
<role xml:id="p">Patty</role>
</castItem>
</castList>
</titlePage>
</front>
</text> <<2nd, telling me it is not complete. It is.
<text><<3rd, teling me it can not start with tetx. EVen though I have the element TEI surrounding all of this.
<body>
<sp> <<This is full of valid speech.
</sp>
</body>
答案 0 :(得分:1)
我发现了下一个问题
最小有效TEI-doc有一个根元素<TEI>
,它有两个必填子:<teiHeader>
和<text>
。在<text>
中,有两个<front>
,<back>
和一个必填元素<body>
- 这些是第二和第三个问题
<titlePage>
can't contain <castList>
,未对方案进行任何修改。 Here is an example,其中<castList>
元素是<titlePage>