使用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>发布于 2014-08-27 18:20:43
我发现了下一个问题
<TEI>,它有两个必需子元素:<teiHeader>和<text>。在<text>中有两个可能的<front>,<back>和一个强制元素<body> -这些元素用于第二个和第三个问题<titlePage> can't contain <castList>,而不需要对方案进行任何修改。Here is an example,其中<castList>元素是<titlePage>的一部分
https://stackoverflow.com/questions/20409079
复制相似问题