有什麼區別XML中的<seg>
和HTML中的<span>
有什麼區別?這裏有兩個通道從聖經,一個從Christodouloupoulos' and Steedman's massively parallel Bible corpus的English Bible,'<seg>`和`<span>`
<?xml version="1.0" ?>
<cesDoc version="4">
…
<text>
<body id="Bible" lang="en">
<div id="b.GEN" type="book">
<div id="b.GEN.1" type="chapter">
<seg id="b.GEN.1.1" type="verse">
In the beginning God created the heaven and the earth.
</seg>
<seg id="b.GEN.1.2" type="verse">
And the earth was without form, and void; and darkness was upon the face of the deep. And the Spirit of God moved upon the face of the waters.
</seg>
…
,另一個從和合譯本在Bible Gateway,這是他們從哪裏得到他們的大部分文章來自:
<p class="chapter-1">
<span id="en-NIV-27932" class="text Rom-1-1">
<span class="chapternum">1 </span>
Paul, a servant of Christ Jesus, called to be an apostle and set apart for the gospel of God—
</span>
<span id="en-NIV-27933" class="text Rom-1-2">
<sup class="versenum">2 </sup>the gospel he promised beforehand through his prophets in the Holy Scriptures
</span>
…
在HTML中,似乎<span>
可以代替<seg>
,但HTML添加了<span>
中的經文編號。哦,章節在<div>
。所以這不是一對一的。
當然,我意識到HTML和XML是不同的,這只是一個並置;我確定有其他人在那裏。但是我將需要能夠將XML顯示爲HTML,並且我不希望憤怒於神。那麼,在概念上,<seg>
與<span>
有什麼不同,用途,意義和用法?
更新:@ jim-garrison,說我需要閱讀模式來理解XML,但我也是一位新手。特別是,TEI爲<seg>
找到了一些official-looking documentation,這讓我覺得它的使用比任意的要多一點,但我不知道如何解釋這個文檔。它應該給我們一個比Jim已經寫的更具體的答案嗎?