Quote Annotation¶
Structural annotation used to explicitly mark quoted speech, i.e. that what is reported to be said and appears in the text in some form of quotation marks.
Specification¶
| Annotation Category: | |
|---|---|
| Declaration: |
|
| Version History: | |
Since v0.11 |
|
| Element: |
|
| API Class: |
|
| Required Attributes: | |
| Optional Attributes: | |
|
|
| Accepted Data: |
|
| Valid Context: |
|
Example¶
The next example shows a quote annotations:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | <?xml version="1.0" encoding="utf-8"?>
<FoLiA xmlns="http://ilk.uvt.nl/folia" version="2.0" xml:id="example">
<metadata>
<annotations>
<token-annotation>
<annotator processor="p1" />
</token-annotation>
<text-annotation>
<annotator processor="p1" />
</text-annotation>
<sentence-annotation>
<annotator processor="p1" />
</sentence-annotation>
<quote-annotation>
<annotator processor="p1" />
</quote-annotation>
</annotations>
<provenance>
<processor xml:id="p1" name="proycon" type="manual" />
</provenance>
</metadata>
<text xml:id="example.text">
<s xml:id="example.p.1.s.1">
<w xml:id="example.p.1.s.1.w.1"><t>He</t></w>
<w xml:id="example.p.1.s.1.w.2" space="no"><t>said</t></w>
<w xml:id="example.p.1.s.1.w.3">
<t>:</t>
</w>
<quote xml:id="example.p.1.s.1.quote.1">
<w xml:id="example.p.1.s.1.w.4" space="no">
<t>"</t>
</w>
<s xml:id="example.p.1.s.1.quote.1.s.1">
<w xml:id="example.p.1.s.1.w.5"><t>I</t></w>
<w xml:id="example.p.1.s.1.w.6"><t>do</t></w>
<w xml:id="example.p.1.s.1.w.7"><t>not</t></w>
<w xml:id="example.p.1.s.1.w.8" space="no"><t>know</t></w>
<w xml:id="example.p.1.s.1.w.9">
<t>.</t>
</w>
</s>
<s xml:id="example.p.1.s.1.quote.1.s.2">
<w xml:id="example.p.1.s.1.w.10"><t>I</t></w>
<w xml:id="example.p.1.s.1.w.11"><t>think</t></w>
<w xml:id="example.p.1.s.1.w.12"><t>you</t></w>
<w xml:id="example.p.1.s.1.w.13"><t>are</t></w>
<w xml:id="example.p.1.s.1.w.14" space="no"><t>right</t></w>
</s>
<w xml:id="example.p.1.s.1.w.15">
<t>"</t>
</w>
</quote>
<w xml:id="example.p.1.s.1.w.16"><t>,</t></w>
<w xml:id="example.p.1.s.1.w.17"><t>and</t></w>
<w xml:id="example.p.1.s.1.w.18" space="no"><t>left</t></w>
<w xml:id="example.p.1.s.1.w.19">
<t>.</t>
</w>
</s>
</text>
</FoLiA>
|