tei P4 - speech group tag

This should cover W3C XML Schema, Relax NG and DTD related problems.
jhong
Posts: 3
Joined: Fri Nov 03, 2006 10:26 pm

tei P4 - speech group tag

Post by jhong »

I wonder if anyone know a valid way to tag a speech group with multiple speakers with the same speech line? here is the rough example of what the speach may look like
A : words words
B: words words
C: words words
A,B: words words words
C,A: words words words
i did try to make a nested speech group, but i don't think that is a vallid way of doing it. please let me know.

thanks~!
george
Site Admin
Posts: 2095
Joined: Thu Jan 09, 2003 2:58 pm

Post by george »

Hi,

I am not a TEI expert, but what about the following?

Code: Select all


<sp>
<speaker>
<name>A</name>
</speaker>
<p>words words</p>
</sp>
<sp>
<speaker>
<name>B</name>
</speaker>
<p>words words</p>
</sp>
<sp>
<speaker>
<name>A</name>
<name>B</name>
</speaker>
<p>words words words</p>
</sp>
<sp>
<speaker>
<name>C</name>
<name>A</name>
</speaker>
<p>words words words</p>
</sp>
Best Regards,
George
George Cristian Bina
jhong
Posts: 3
Joined: Fri Nov 03, 2006 10:26 pm

Post by jhong »

Thanks for the reply. I did use your the tagging that you suggested, and it validates. However, I am not sure whether is what my professor wants, since the <name> tag is not used in all of his other quartos.

Do you happen to know how to add braces to the tagging or should it be a CSS matter? The braces represents the speech of two speaker. Meaning if A and B is the speaker for the same speech, there will be a brace surrounding the speech.

eg: A, B { speech } (however the brace iis not as small thou}

Hope you understand what I am trying to say here.
george
Site Admin
Posts: 2095
Joined: Thu Jan 09, 2003 2:58 pm

Post by george »

Hi,

Sorry, as I said I am not a TEI expert. I am sure however that you will receive a quick response on the TEI list
http://listserv.brown.edu/archives/cgi- ... =tei-l&A=1

Best Regards,
George
George Cristian Bina
Post Reply