Page 1 of 1
					
				tei P4 - speech group tag
				Posted: Fri Nov 03, 2006 10:42 pm
				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~!
 
			 
			
					
				
				Posted: Mon Nov 06, 2006 11:50 am
				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
 
			 
			
					
				
				Posted: Thu Nov 30, 2006 8:23 pm
				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.
			 
			
					
				
				Posted: Thu Nov 30, 2006 9:26 pm
				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