Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Include example in guidelines of a speech without speech prefix #2640

Open
jjokisch opened this issue Dec 19, 2024 · 1 comment
Open

Include example in guidelines of a speech without speech prefix #2640

jjokisch opened this issue Dec 19, 2024 · 1 comment

Comments

@jjokisch
Copy link

By reviewing different TEI project, I have noticed a reoccurring problem with constellations, in which a speech is introduced not via a speech prefix but via a stage direction. The problem is illustrated nicely by the following two examples.
Firstly, in Lenz's Der Hofmeister1, we find the following structure of a stage direction "Hinter der Szene Geschrei" ["shouting behind the scene"] introducing a speech spoken off-stage:

Screenshot 2024-09-16 222418

The encoded version by TextGrid Repository based on this exact version of the play offers the following markup. Notice how the stage direction is correctly encoded, but the dialog is merely a random <p> without the <sp> that would rightfully mark it as a speech:

<stage rend="zenoPC" xml:id="tg183.2.5">
<hi rend="italic" xml:id="tg183.2.5.1">Hinter der Szene Geschrei.</hi>
</stage>
<lb xml:id="tg183.2.6"/>
<p xml:id="tg183.2.7">
Hülfe! 's meine Tochter! Sackerment und all das Wetter! Graf! reicht mir doch die Stange: daß Euch die schwere Not.
</p>

Secondly, in Lope de Vega’s Caballero de Illescas2, we find a song, which is introduced as such twice. Thus, we have a stage direction denoting that the three characters Belardo, Tirreno and Riselo enter the stage singing and their song is prefixed yet again with the stage direction "cantan" ["they sing"].
grafik

The encoding by ArteLope, which relies on this very edition, correctly encoded the stage directions and the speech, but deemed it necessary to add a specific speech prefix:

<stage>(Sale[n] BELARDO, TIRRENO, RISELO, cantando este villancico.)</stage>
<stage>(Cantan.)</stage>
<sp who="#tir #ris #bel">
<speaker>[BELARDO, TIRRENO Y RISELO]</speaker>
<lg><l>Blancas coge Lucinda</l>[…]</lg>
</sp>

I believe the two examples illustrates that practitioners feel uneasy with using "prefix-less speeches." This, most likely, results from their rarity and the fact that they clash with generally held beliefs about the structure of dramatic texts. While the guidelines contain two examples of comparable structures in chapter 7, this feature is never directly referred to and the examples show prologues and epilogues, which do not necessarily correspond with the general structure of dialogues within dramatic literature. Thus, I think the community would benefit from an inclusion of a genuine example of a "prefix-less speech" in the guidelines and/or a direct acknowledgement of this structure existing and that <sp> (maybe counterintuitively) does not require a <speaker>. Ideally, this could be added to the excellent 3.13.2 Core Tags for Drama.

Footnotes

  1. In: Lenz, Jakob Michael Reinhold (1967): Werke und Schriften. Vol. II. Ed. by Britta Titel and Hellmut Haug. Stuttgart: Goverts, 69.

  2. In: Vega, Lope de (1917): Obras de Lope de Vega [nueva edicion]. Vol. IV. Ed. by Emilio Cotarelo y Mori. Madrid: RAE, 138.

@lb42
Copy link
Member

lb42 commented Dec 19, 2024

This is not at all a rare phenomenon in musical theatre. I have taken the approach that a musical number should always be encoded using the <spGrp> element since this allows both for simple cases where there is just one person singing, and more complex cases where different sections are sung by different people, or by an unnamed chorus, or interrupted by spoken text which is to be understood as spoken by the "current" speaker/singer. In each case, of course, there may well be an <sp> without a contained <speaker>, and a <stage>

Here's an example , from Coyne's "Willikind and Hys Dinah" (Theatre Royal, Haymarket 1851)

 <spGrp>
     <head>Trio—Dinah, Willikind, and Sneeze—Tippitywitchet.</head>
     <sp>
      <speaker>Wil.</speaker>
      <l>The water butt is handy, But then the damp is such—</l>
      <l>If you’ve a little brandy,</l>
      <l>I shouldn’t mind it much.</l>
     </sp>
     <sp>
      <stage>(Sneeze in house)</stage>
      <l>Atchew!</l>
     </sp>
     <sp>
      <speaker>Dinah.</speaker>
      <l>Beware!</l>
     </sp>
     <sp>
      <stage>(Sneeze in house) </stage>
      <l>Atchew !</l>
     </sp>
     <sp>
      <speaker>Dinah.</speaker>
      <l>Take care!</l>
      <l>He’s coming now this way.</l>
     </sp>
     <sp>
      <stage>{Sneeze in house)</stage>
      <l>Atchew!</l>
     </sp>
     <sp>
      <speaker>Dinah.</speaker>
      <l>Prepare!</l>
     </sp>
     <sp>
      <stage>(Sneeze in house) </stage>
      <l>Atchew !</l>
     </sp>
     <sp>
      <speaker>Dinah.</speaker>
      <l>In there.</l>
      <l>He might seek for you all the day.</l>
     </sp>
    </spGrp>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants