| 1 |
<?xml version='1.0' encoding='utf-8' ?> |
|---|
| 2 |
<!-- This is a DTD for the TIGER XML corpus description language, |
|---|
| 3 |
or rather, of a subset of it. |
|---|
| 4 |
We have only included the parts that are relevant to LTC. |
|---|
| 5 |
We have also extended the set of attributes (as allowed in the |
|---|
| 6 |
TIGER XML specification). |
|---|
| 7 |
We have, in addition, added some elements to the header, |
|---|
| 8 |
thereby making this format incompatible with TIGER-XML. |
|---|
| 9 |
--> |
|---|
| 10 |
<!DOCTYPE corpus [ |
|---|
| 11 |
|
|---|
| 12 |
<!ELEMENT corpus ((head)?,body) > |
|---|
| 13 |
<!ATTLIST corpus |
|---|
| 14 |
id ID #REQUIRED |
|---|
| 15 |
version CDATA #IMPLIED > |
|---|
| 16 |
|
|---|
| 17 |
<!ELEMENT head ((meta)?, (annotation)?) > |
|---|
| 18 |
<!ELEMENT meta ((name)?, (author)?, (date)?, (description)?, (format)?, (history)?, (display) ) > |
|---|
| 19 |
<!ELEMENT name (#PCDATA) > |
|---|
| 20 |
<!ELEMENT author (#PCDATA) > |
|---|
| 21 |
<!ELEMENT date (#PCDATA) > |
|---|
| 22 |
<!ELEMENT description (#PCDATA) > |
|---|
| 23 |
<!ELEMENT format (#PCDATA) > |
|---|
| 24 |
<!ELEMENT history (#PCDATA) > |
|---|
| 25 |
|
|---|
| 26 |
<!-- The display element is not part of the TIGER-XML specification, |
|---|
| 27 |
but is added to LTC for the purpose of being able to save |
|---|
| 28 |
information about the state of the display, such as fonts, |
|---|
| 29 |
interlinear lines state, magnification, and direction. |
|---|
| 30 |
--> |
|---|
| 31 |
<!ELEMENT display ((interlinearline)+, (magnification), (direction)) > |
|---|
| 32 |
|
|---|
| 33 |
<!ELEMENT interlinearline EMPTY > |
|---|
| 34 |
<!-- The interlinearline element provides information about one |
|---|
| 35 |
interlinear line. There are always five interlinearline elements, |
|---|
| 36 |
corresponding to the five interlinear lines, starting with line 1. |
|---|
| 37 |
|
|---|
| 38 |
The 'on' attribute shows whether the line in question was turned |
|---|
| 39 |
on (true) or off (false). |
|---|
| 40 |
|
|---|
| 41 |
The fontname attribute shows the name of the font. |
|---|
| 42 |
--> |
|---|
| 43 |
<!ATTLIST interlinearline |
|---|
| 44 |
on (true|false) #REQUIRED |
|---|
| 45 |
fontname CDATA #REQUIRED > |
|---|
| 46 |
|
|---|
| 47 |
<!ELEMENT magnification EMPTY > |
|---|
| 48 |
<!-- The magnification element provides information about the |
|---|
| 49 |
magnification of the display. The 'percent' attribute |
|---|
| 50 |
must be an integer. The number will be rounded to the nearest |
|---|
| 51 |
one supported by LTC. |
|---|
| 52 |
--> |
|---|
| 53 |
<!ATTLIST magnification |
|---|
| 54 |
percent CDATA #REQUIRED > |
|---|
| 55 |
|
|---|
| 56 |
<!ELEMENT direction EMPTY > |
|---|
| 57 |
<!-- The 'direction' element shows whether the file is left-to-right |
|---|
| 58 |
or right-to-left. |
|---|
| 59 |
--> |
|---|
| 60 |
<!ATTLIST direction |
|---|
| 61 |
direction (lefttoright|righttoleft) #REQUIRED > |
|---|
| 62 |
|
|---|
| 63 |
<!ELEMENT annotation ((feature)+, (edgelabel)?, (secedgelabel)?) > |
|---|
| 64 |
|
|---|
| 65 |
<!-- A 'feature' element is part of the 'annotation' element |
|---|
| 66 |
of the 'head' element. It shows what features are present |
|---|
| 67 |
for the particular domain. |
|---|
| 68 |
|
|---|
| 69 |
In LTC, the following are used for the following domains: |
|---|
| 70 |
|
|---|
| 71 |
- domain 'T': |
|---|
| 72 |
|
|---|
| 73 |
- monad |
|---|
| 74 |
- line1 |
|---|
| 75 |
- line2 |
|---|
| 76 |
- line3 |
|---|
| 77 |
- line4 |
|---|
| 78 |
- line5 |
|---|
| 79 |
|
|---|
| 80 |
(See the "t" element below for an explanation.) |
|---|
| 81 |
|
|---|
| 82 |
- domain 'NT': |
|---|
| 83 |
|
|---|
| 84 |
- treestate (values: COLLAPSED, EXPANDED) |
|---|
| 85 |
- cat (values: Whatever were present in the user's configuration files: All of them.) |
|---|
| 86 |
--> |
|---|
| 87 |
|
|---|
| 88 |
|
|---|
| 89 |
<!ELEMENT feature (value)* > |
|---|
| 90 |
<!-- domain means as follows: |
|---|
| 91 |
T : Terminals |
|---|
| 92 |
NT : Nonterminals |
|---|
| 93 |
FREC : May belong to both terminals and nonterminals. |
|---|
| 94 |
|
|---|
| 95 |
FREC is not used. |
|---|
| 96 |
--> |
|---|
| 97 |
<!ATTLIST feature |
|---|
| 98 |
name CDATA #REQUIRED |
|---|
| 99 |
domain (T|NT|FREC) #REQUIRED > |
|---|
| 100 |
|
|---|
| 101 |
<!ELEMENT edgelabel (value)* > |
|---|
| 102 |
|
|---|
| 103 |
<!ELEMENT secedgelabel (value)* > |
|---|
| 104 |
|
|---|
| 105 |
<!-- The PCDATA is documentation, and can be ignored at will. |
|---|
| 106 |
|
|---|
| 107 |
The 'name' attribute gives the actual value. |
|---|
| 108 |
|
|---|
| 109 |
The 'value' element occurs inside the following elements: |
|---|
| 110 |
|
|---|
| 111 |
- feature |
|---|
| 112 |
- edgelabel |
|---|
| 113 |
- secedgelabel |
|---|
| 114 |
|
|---|
| 115 |
--> |
|---|
| 116 |
<!ELEMENT value (#PCDATA) |
|---|
| 117 |
> |
|---|
| 118 |
<!ATTLIST value |
|---|
| 119 |
name CDATA #REQUIRED > |
|---|
| 120 |
|
|---|
| 121 |
<!-- the body element consists of the 'sentences' (s'es). |
|---|
| 122 |
The 's' elements contain the immediate children of the |
|---|
| 123 |
"Pericope" (or "Text") node in the tree. |
|---|
| 124 |
|
|---|
| 125 |
The "Pericope" is thus implicit in the structure of the body, |
|---|
| 126 |
and is never expressed explicitly. |
|---|
| 127 |
|
|---|
| 128 |
Note that an 's' element may or may not correspond to an |
|---|
| 129 |
actual linguistic unit called a 'sentence'. This is entirely |
|---|
| 130 |
dependent on the analysis. |
|---|
| 131 |
--> |
|---|
| 132 |
<!ELEMENT body (s)* > |
|---|
| 133 |
|
|---|
| 134 |
<!-- the 's' element contains all children of the pericope (aka |
|---|
| 135 |
"Text") node in the tree. |
|---|
| 136 |
|
|---|
| 137 |
The 's' element consists of a 'graph' whose 'root' is the |
|---|
| 138 |
pericope. |
|---|
| 139 |
|
|---|
| 140 |
The 's' element itself is never shown. Only the 'root' and its |
|---|
| 141 |
children. |
|---|
| 142 |
--> |
|---|
| 143 |
<!ELEMENT s (graph)? > |
|---|
| 144 |
<!-- |
|---|
| 145 |
The 'id' attreibute is of the form "s<id_d>", for example, "s10232", |
|---|
| 146 |
where the id_d is the internal, unique ID. |
|---|
| 147 |
--> |
|---|
| 148 |
<!ATTLIST s |
|---|
| 149 |
id ID #REQUIRED > |
|---|
| 150 |
|
|---|
| 151 |
<!ELEMENT graph (terminals, nonterminals) > |
|---|
| 152 |
<!-- root: |
|---|
| 153 |
refers to the pericope node within the graph. |
|---|
| 154 |
|
|---|
| 155 |
discontinuous: |
|---|
| 156 |
true: The graph is discontiguous. |
|---|
| 157 |
false: It is not. |
|---|
| 158 |
|
|---|
| 159 |
The pericope is never discontiguous, so this is always |
|---|
| 160 |
false. |
|---|
| 161 |
--> |
|---|
| 162 |
<!ATTLIST graph |
|---|
| 163 |
root IDREF #REQUIRED |
|---|
| 164 |
discontinuous (true|false) #REQUIRED > |
|---|
| 165 |
|
|---|
| 166 |
<!ELEMENT terminals (t)+ > |
|---|
| 167 |
|
|---|
| 168 |
<!ELEMENT t (secedge)* > |
|---|
| 169 |
<!-- There is no treestate for the t element, |
|---|
| 170 |
simply because Word objects are always 'FIXED' |
|---|
| 171 |
for the treestate, never 'COLLAPSED' or 'EXPANDED'. |
|---|
| 172 |
This is because of their nature as being terminals. |
|---|
| 173 |
|
|---|
| 174 |
The 'id' attribute is of the form "t<id_d>", for example, |
|---|
| 175 |
"t10242", where the id_d is the internal, unique ID. |
|---|
| 176 |
|
|---|
| 177 |
The 'symbol' attribute, when present, specifies what kind of |
|---|
| 178 |
symbol should be displayed instead of lines 1-5. Currently, |
|---|
| 179 |
only a 'null element' is supported. |
|---|
| 180 |
|
|---|
| 181 |
The 'monad' attribute is the placement of the terminal |
|---|
| 182 |
in the logical, sequential reading order. A monad is |
|---|
| 183 |
an integer. The monads start at 0 and increase from there, |
|---|
| 184 |
one monad per terminal. |
|---|
| 185 |
|
|---|
| 186 |
Lines 1-5 are the interlinear lines for the terminal. |
|---|
| 187 |
--> |
|---|
| 188 |
<!ATTLIST t |
|---|
| 189 |
id ID #REQUIRED |
|---|
| 190 |
symbol (nullelement) # IMPLIED |
|---|
| 191 |
monad CDATA #REQUIRED |
|---|
| 192 |
line1 CDATA #REQUIRED |
|---|
| 193 |
line2 CDATA #REQUIRED |
|---|
| 194 |
line3 CDATA #REQUIRED |
|---|
| 195 |
line4 CDATA #REQUIRED |
|---|
| 196 |
line5 CDATA #REQUIRED |
|---|
| 197 |
> |
|---|
| 198 |
|
|---|
| 199 |
|
|---|
| 200 |
<!ELEMENT nonterminals (nt)* > |
|---|
| 201 |
|
|---|
| 202 |
<!ELEMENT nt ((edge)*,(secedge)*) > |
|---|
| 203 |
<!-- |
|---|
| 204 |
The 'id' attribute is of the form "nt<id_d>", for |
|---|
| 205 |
example, "nt10254", where the id_d is the internal, unique |
|---|
| 206 |
ID. |
|---|
| 207 |
|
|---|
| 208 |
The 'treestate' attribute shows the state of the node in |
|---|
| 209 |
the tree at last save, whether it was 'COLLAPSED' or |
|---|
| 210 |
'EXPANDED'. |
|---|
| 211 |
|
|---|
| 212 |
Words are handled by the 't' element. |
|---|
| 213 |
|
|---|
| 214 |
All non-terminals are handled by the 'nt' element. |
|---|
| 215 |
|
|---|
| 216 |
Each nonterminal node has a 'cat', which is always of the |
|---|
| 217 |
form "LongName:DisplayName" |
|---|
| 218 |
|
|---|
| 219 |
Both LongName and DisplayName must be C identifiers, |
|---|
| 220 |
that is, they must conform to the regular expression |
|---|
| 221 |
"[A-Za-z_][A-Za-z_]*". |
|---|
| 222 |
|
|---|
| 223 |
For the special 'Phrase' object type, the 'cat' is of |
|---|
| 224 |
the form 'Phrase:<phrasetype>', for example, |
|---|
| 225 |
'Phrase:NP'. |
|---|
| 226 |
|
|---|
| 227 |
For the special 'RRG' object type, the 'cat' is |
|---|
| 228 |
of the form 'RRG:<RRG-node-type>." |
|---|
| 229 |
|
|---|
| 230 |
For the special 'XBar' object type, the 'cat' is |
|---|
| 231 |
of the form 'XBar:<XBar-node-type>." |
|---|
| 232 |
|
|---|
| 233 |
When reading old .ltc files, the following conversions |
|---|
| 234 |
apply: |
|---|
| 235 |
|
|---|
| 236 |
- 'Clause': |
|---|
| 237 |
- 'cat' = 'Clause:Cl', |
|---|
| 238 |
|
|---|
| 239 |
- 'ClauseCluster': |
|---|
| 240 |
- 'cat' = 'ClauseCluster:CCl', |
|---|
| 241 |
|
|---|
| 242 |
- 'ASLO': |
|---|
| 243 |
- 'cat' = <the ASLO's LONG_LABEL>:<the ASLO's SHORT_LABEL> |
|---|
| 244 |
for example: "SENTENCE:S" |
|---|
| 245 |
|
|---|
| 246 |
--> |
|---|
| 247 |
<!ATTLIST nt |
|---|
| 248 |
id ID #REQUIRED |
|---|
| 249 |
treestate (COLLAPSED|EXPANDED) #REQUIRED |
|---|
| 250 |
cat CDATA #REQUIRED |
|---|
| 251 |
> |
|---|
| 252 |
|
|---|
| 253 |
|
|---|
| 254 |
<!ELEMENT edge EMPTY > |
|---|
| 255 |
<!-- The idref of the edge points to the *child* of the |
|---|
| 256 |
non-terminal in whose context this edge element occurs. |
|---|
| 257 |
--> |
|---|
| 258 |
<!-- |
|---|
| 259 |
|
|---|
| 260 |
The 'label' attribute contains the |-separated |
|---|
| 261 |
(pipe-separated) label set of this edge's child. |
|---|
| 262 |
|
|---|
| 263 |
Each member is of the form LabelGroup:Label. |
|---|
| 264 |
|
|---|
| 265 |
For example: "Function:Adju|Function:Pred". |
|---|
| 266 |
|
|---|
| 267 |
Both the LabelGroup and the Label are required to |
|---|
| 268 |
be C identifiers. That is, they must conform to the |
|---|
| 269 |
regular expression [A-Za-z_][A-Za-z_]*. |
|---|
| 270 |
--> |
|---|
| 271 |
<!ATTLIST edge |
|---|
| 272 |
idref IDREF #REQUIRED |
|---|
| 273 |
label CDATA #IMPLIED |
|---|
| 274 |
> |
|---|
| 275 |
|
|---|
| 276 |
<!-- secedges are currently not used. --> |
|---|
| 277 |
<!ELEMENT secedge EMPTY > |
|---|
| 278 |
<!ATTLIST secedge |
|---|
| 279 |
idref IDREF #REQUIRED |
|---|
| 280 |
label CDATA #IMPLIED > |
|---|
| 281 |
]> |
|---|
| 282 |
<corpus id="_home_chris_workspace_lex_etc_demonstration_tree_from_wivu.ltcx"> |
|---|
| 283 |
<head> |
|---|
| 284 |
<meta> |
|---|
| 285 |
<date>23-Mar-2009</date> |
|---|
| 286 |
<format>3.0</format> |
|---|
| 287 |
<display> |
|---|
| 288 |
<interlinearline on="true" fontname="SILIPAManuscriptL"/> |
|---|
| 289 |
<interlinearline on="false" fontname="SILIPADoulosL"/> |
|---|
| 290 |
<interlinearline on="false" fontname="Arial"/> |
|---|
| 291 |
<interlinearline on="false" fontname="Times New Roman"/> |
|---|
| 292 |
<interlinearline on="false" fontname="SILIPAManuscriptL"/> |
|---|
| 293 |
<magnification percent="130"/> |
|---|
| 294 |
<direction direction="lefttoright"/> |
|---|
| 295 |
</display> |
|---|
| 296 |
</meta> |
|---|
| 297 |
<annotation> |
|---|
| 298 |
<feature name="symbol" domain="T"> |
|---|
| 299 |
<value name="nullelement">Zero (null) element</value> |
|---|
| 300 |
</feature><feature name="monad" domain="T"/> |
|---|
| 301 |
<feature name="line1" domain="T"/> |
|---|
| 302 |
<feature name="line2" domain="T"/> |
|---|
| 303 |
<feature name="line3" domain="T"/> |
|---|
| 304 |
<feature name="line4" domain="T"/> |
|---|
| 305 |
<feature name="line5" domain="T"/> |
|---|
| 306 |
<feature name="treestate" domain="NT"> |
|---|
| 307 |
<value name="COLLAPSED">Collapsed node</value> |
|---|
| 308 |
<value name="EXPANDED">Expanded node</value> |
|---|
| 309 |
</feature> |
|---|
| 310 |
<feature name="cat" domain="NT"> |
|---|
| 311 |
<value name="Word:Word">Object type, long name='Word', short name ='Word'</value> |
|---|
| 312 |
<value name="Phrase:Unknown">Phrase of type 'Unknown'</value> |
|---|
| 313 |
<value name="Phrase:VP">Phrase of type 'VP'</value> |
|---|
| 314 |
<value name="Phrase:NP">Phrase of type 'NP'</value> |
|---|
| 315 |
<value name="Phrase:AP">Phrase of type 'AP'</value> |
|---|
| 316 |
<value name="Phrase:PP">Phrase of type 'PP'</value> |
|---|
| 317 |
<value name="Phrase:AdvP">Phrase of type 'AdvP'</value> |
|---|
| 318 |
<value name="Phrase:PtcP">Phrase of type 'PtcP'</value> |
|---|
| 319 |
<value name="Phrase:InfP">Phrase of type 'InfP'</value> |
|---|
| 320 |
<value name="Phrase:CjP">Phrase of type 'CjP'</value> |
|---|
| 321 |
<value name="Phrase:IjP">Phrase of type 'IjP'</value> |
|---|
| 322 |
<value name="Phrase:PartP">Phrase of type 'PartP'</value> |
|---|
| 323 |
<value name="XBar:XBar">Object type, long name='XBar', short name ='XBar'</value> |
|---|
| 324 |
<value name="RRG:RRG">Object type, long name='RRG', short name ='RRG'</value> |
|---|
| 325 |
<value name="Text:Text">Object type, long name='Text', short name ='Text'</value> |
|---|
| 326 |
<value name="Clause:Cl">Object type, long name='Clause', short name ='Cl'</value> |
|---|
| 327 |
<value name="Sentence:S">Object type, long name='Sentence', short name ='S'</value> |
|---|
| 328 |
<value name="Paragraph:Par">Object type, long name='Paragraph', short name ='Par'</value> |
|---|
| 329 |
</feature> |
|---|
| 330 |
<edgelabel> |
|---|
| 331 |
<value name="Function:Pred">Label set:'Function', label='Pred'</value> |
|---|
| 332 |
<value name="Function:PreC">Label set:'Function', label='PreC'</value> |
|---|
| 333 |
<value name="Function:Subj">Label set:'Function', label='Subj'</value> |
|---|
| 334 |
<value name="Function:Objc">Label set:'Function', label='Objc'</value> |
|---|
| 335 |
<value name="Function:IndO">Label set:'Function', label='IndO'</value> |
|---|
| 336 |
<value name="Function:Cmpl">Label set:'Function', label='Cmpl'</value> |
|---|
| 337 |
<value name="Function:Adju">Label set:'Function', label='Adju'</value> |
|---|
| 338 |
<value name="Function:Rela">Label set:'Function', label='Rela'</value> |
|---|
| 339 |
<value name="Function:Voca">Label set:'Function', label='Voca'</value> |
|---|
| 340 |
<value name="Function:Nega">Label set:'Function', label='Nega'</value> |
|---|
| 341 |
<value name="Function:Ques">Label set:'Function', label='Ques'</value> |
|---|
| 342 |
<value name="Function:Intj">Label set:'Function', label='Intj'</value> |
|---|
| 343 |
<value name="Function:Conj">Label set:'Function', label='Conj'</value> |
|---|
| 344 |
<value name="Function:Modi">Label set:'Function', label='Modi'</value> |
|---|
| 345 |
<value name="Function:Time">Label set:'Function', label='Time'</value> |
|---|
| 346 |
<value name="Function:Loca">Label set:'Function', label='Loca'</value> |
|---|
| 347 |
<value name="LSC:SENTENCE">Label set:'LSC', label='SENTENCE'</value> |
|---|
| 348 |
<value name="LSC:CLAUSE">Label set:'LSC', label='CLAUSE'</value> |
|---|
| 349 |
<value name="LSC:LDP">Label set:'LSC', label='LDP'</value> |
|---|
| 350 |
<value name="LSC:PrCS">Label set:'LSC', label='PrCS'</value> |
|---|
| 351 |
<value name="LSC:CORE">Label set:'LSC', label='CORE'</value> |
|---|
| 352 |
<value name="LSC:PERIPHERY">Label set:'LSC', label='PERIPHERY'</value> |
|---|
| 353 |
<value name="LSC:ARG">Label set:'LSC', label='ARG'</value> |
|---|
| 354 |
<value name="LSC:NUC">Label set:'LSC', label='NUC'</value> |
|---|
| 355 |
<value name="LSC:PRED">Label set:'LSC', label='PRED'</value> |
|---|
| 356 |
<value name="LSC:PoCS">Label set:'LSC', label='PoCS'</value> |
|---|
| 357 |
<value name="LSC:RDP">Label set:'LSC', label='RDP'</value> |
|---|
| 358 |
<value name="LSNP:NPIP">Label set:'LSNP', label='NPIP'</value> |
|---|
| 359 |
<value name="LSNP:CORE">Label set:'LSNP', label='CORE'</value> |
|---|
| 360 |
<value name="LSNP:PERIPHERY">Label set:'LSNP', label='PERIPHERY'</value> |
|---|
| 361 |
<value name="LSNP:ARG">Label set:'LSNP', label='ARG'</value> |
|---|
| 362 |
<value name="LSNP:REF">Label set:'LSNP', label='REF'</value> |
|---|
| 363 |
<value name="Junct_Nex:Nuc_Coord">Label set:'Junct_Nex', label='Nuc_Coord'</value> |
|---|
| 364 |
<value name="Junct_Nex:Nuc_Subord">Label set:'Junct_Nex', label='Nuc_Subord'</value> |
|---|
| 365 |
<value name="Junct_Nex:Nuc_Cosubord">Label set:'Junct_Nex', label='Nuc_Cosubord'</value> |
|---|
| 366 |
<value name="Junct_Nex:Core_Coord">Label set:'Junct_Nex', label='Core_Coord'</value> |
|---|
| 367 |
<value name="Junct_Nex:Core_Subord">Label set:'Junct_Nex', label='Core_Subord'</value> |
|---|
| 368 |
<value name="Junct_Nex:Core_Cosubord">Label set:'Junct_Nex', label='Core_Cosubord'</value> |
|---|
| 369 |
<value name="Junct_Nex:Cl_Coord">Label set:'Junct_Nex', label='Cl_Coord'</value> |
|---|
| 370 |
<value name="Junct_Nex:Cl_Subord">Label set:'Junct_Nex', label='Cl_Subord'</value> |
|---|
| 371 |
<value name="Junct_Nex:Cl_Cosubord">Label set:'Junct_Nex', label='Cl_Cosubord'</value> |
|---|
| 372 |
<value name="OP:ASP">Label set:'OP', label='ASP'</value> |
|---|
| 373 |
<value name="OP:DIR">Label set:'OP', label='DIR'</value> |
|---|
| 374 |
<value name="OP:MOD">Label set:'OP', label='MOD'</value> |
|---|
| 375 |
<value name="OP:NEG">Label set:'OP', label='NEG'</value> |
|---|
| 376 |
<value name="OP:STA">Label set:'OP', label='STA'</value> |
|---|
| 377 |
<value name="OP:TNS">Label set:'OP', label='TNS'</value> |
|---|
| 378 |
<value name="OP:EVID">Label set:'OP', label='EVID'</value> |
|---|
| 379 |
<value name="OP:IF">Label set:'OP', label='IF'</value> |
|---|
| 380 |
<value name="OPN:ADJ_N">Label set:'OPN', label='ADJ_N'</value> |
|---|
| 381 |
<value name="OPN:NASP">Label set:'OPN', label='NASP'</value> |
|---|
| 382 |
<value name="OPN:NUM">Label set:'OPN', label='NUM'</value> |
|---|
| 383 |
<value name="OPN:QNT">Label set:'OPN', label='QNT'</value> |
|---|
| 384 |
<value name="OPN:NEG">Label set:'OPN', label='NEG'</value> |
|---|
| 385 |
<value name="OPN:DEF">Label set:'OPN', label='DEF'</value> |
|---|
| 386 |
<value name="OPN:DEIC">Label set:'OPN', label='DEIC'</value> |
|---|
| 387 |
<value name="RC:restrictive">Label set:'RC', label='restrictive'</value> |
|---|
| 388 |
<value name="RC:non_restrictive">Label set:'RC', label='non_restrictive'</value> |
|---|
| 389 |
<value name="RC:appositional">Label set:'RC', label='appositional'</value> |
|---|
| 390 |
<value name="RC:continuative">Label set:'RC', label='continuative'</value> |
|---|
| 391 |
<value name="RC:prenominal">Label set:'RC', label='prenominal'</value> |
|---|
| 392 |
<value name="RC:postnominal">Label set:'RC', label='postnominal'</value> |
|---|
| 393 |
<value name="RC:headless">Label set:'RC', label='headless'</value> |
|---|
| 394 |
<value name="RC:head_incorporating">Label set:'RC', label='head_incorporating'</value> |
|---|
| 395 |
<value name="cl_coord:conjunction">Label set:'cl_coord', label='conjunction'</value> |
|---|
| 396 |
<value name="cl_coord:contrast">Label set:'cl_coord', label='contrast'</value> |
|---|
| 397 |
<value name="cl_coord:disjunction">Label set:'cl_coord', label='disjunction'</value> |
|---|
| 398 |
<value name="cl_coord:joint">Label set:'cl_coord', label='joint'</value> |
|---|
| 399 |
<value name="cl_coord:list">Label set:'cl_coord', label='list'</value> |
|---|
| 400 |
<value name="cl_coord:restatement">Label set:'cl_coord', label='restatement'</value> |
|---|
| 401 |
<value name="cl_coord:sequence">Label set:'cl_coord', label='sequence'</value> |
|---|
| 402 |
<value name="cl_subord:Antithesis">Label set:'cl_subord', label='Antithesis'</value> |
|---|
| 403 |
<value name="cl_subord:Background">Label set:'cl_subord', label='Background'</value> |
|---|
| 404 |
<value name="cl_subord:Circumstance">Label set:'cl_subord', label='Circumstance'</value> |
|---|
| 405 |
<value name="cl_subord:Concession">Label set:'cl_subord', label='Concession'</value> |
|---|
| 406 |
<value name="cl_subord:Condition">Label set:'cl_subord', label='Condition'</value> |
|---|
| 407 |
<value name="cl_subord:Elaboration">Label set:'cl_subord', label='Elaboration'</value> |
|---|
| 408 |
<value name="cl_subord:Enablement">Label set:'cl_subord', label='Enablement'</value> |
|---|
| 409 |
<value name="cl_subord:Evaluation">Label set:'cl_subord', label='Evaluation'</value> |
|---|
| 410 |
<value name="cl_subord:Evidence">Label set:'cl_subord', label='Evidence'</value> |
|---|
| 411 |
<value name="cl_subord:Interpretation">Label set:'cl_subord', label='Interpretation'</value> |
|---|
| 412 |
<value name="cl_subord:Justify">Label set:'cl_subord', label='Justify'</value> |
|---|
| 413 |
<value name="cl_subord:Means">Label set:'cl_subord', label='Means'</value> |
|---|
| 414 |
<value name="cl_subord:Motivation">Label set:'cl_subord', label='Motivation'</value> |
|---|
| 415 |
<value name="cl_subord:Nonvolitional_cause">Label set:'cl_subord', label='Nonvolitional_cause'</value> |
|---|
| 416 |
<value name="cl_subord:Nonvolitional_result">Label set:'cl_subord', label='Nonvolitional_result'</value> |
|---|
| 417 |
<value name="cl_subord:Otherwise">Label set:'cl_subord', label='Otherwise'</value> |
|---|
| 418 |
<value name="cl_subord:Preparation">Label set:'cl_subord', label='Preparation'</value> |
|---|
| 419 |
<value name="cl_subord:Purpose">Label set:'cl_subord', label='Purpose'</value> |
|---|
| 420 |
<value name="cl_subord:Restatement">Label set:'cl_subord', label='Restatement'</value> |
|---|
| 421 |
<value name="cl_subord:Solutionhood">Label set:'cl_subord', label='Solutionhood'</value> |
|---|
| 422 |
<value name="cl_subord:Summary">Label set:'cl_subord', label='Summary'</value> |
|---|
| 423 |
<value name="cl_subord:Unconditional">Label set:'cl_subord', label='Unconditional'</value> |
|---|
| 424 |
<value name="cl_subord:Unless">Label set:'cl_subord', label='Unless'</value> |
|---|
| 425 |
<value name="cl_subord:Unstated_relation">Label set:'cl_subord', label='Unstated_relation'</value> |
|---|
| 426 |
<value name="cl_subord:Volitional_cause">Label set:'cl_subord', label='Volitional_cause'</value> |
|---|
| 427 |
<value name="cl_subord:Volitional_result">Label set:'cl_subord', label='Volitional_result'</value> |
|---|
| 428 |
<value name="cl_cosubord:Antithesis">Label set:'cl_cosubord', label='Antithesis'</value> |
|---|
| 429 |
<value name="cl_cosubord:Background">Label set:'cl_cosubord', label='Background'</value> |
|---|
| 430 |
<value name="cl_cosubord:Circumstance">Label set:'cl_cosubord', label='Circumstance'</value> |
|---|
| 431 |
<value name="cl_cosubord:Concession">Label set:'cl_cosubord', label='Concession'</value> |
|---|
| 432 |
<value name="cl_cosubord:Condition">Label set:'cl_cosubord', label='Condition'</value> |
|---|
| 433 |
<value name="cl_cosubord:Elaboration">Label set:'cl_cosubord', label='Elaboration'</value> |
|---|
| 434 |
<value name="cl_cosubord:Enablement">Label set:'cl_cosubord', label='Enablement'</value> |
|---|
| 435 |
<value name="cl_cosubord:Evaluation">Label set:'cl_cosubord', label='Evaluation'</value> |
|---|
| 436 |
<value name="cl_cosubord:Evidence">Label set:'cl_cosubord', label='Evidence'</value> |
|---|
| 437 |
<value name="cl_cosubord:Interpretation">Label set:'cl_cosubord', label='Interpretation'</value> |
|---|
| 438 |
<value name="cl_cosubord:Justify">Label set:'cl_cosubord', label='Justify'</value> |
|---|
| 439 |
<value name="cl_cosubord:Means">Label set:'cl_cosubord', label='Means'</value> |
|---|
| 440 |
<value name="cl_cosubord:Motivation">Label set:'cl_cosubord', label='Motivation'</value> |
|---|
| 441 |
<value name="cl_cosubord:Nonvolitional_cause">Label set:'cl_cosubord', label='Nonvolitional_cause'</value> |
|---|
| 442 |
<value name="cl_cosubord:Nonvolitional_result">Label set:'cl_cosubord', label='Nonvolitional_result'</value> |
|---|
| 443 |
<value name="cl_cosubord:Otherwise">Label set:'cl_cosubord', label='Otherwise'</value> |
|---|
| 444 |
<value name="cl_cosubord:Preparation">Label set:'cl_cosubord', label='Preparation'</value> |
|---|
| 445 |
<value name="cl_cosubord:Purpose">Label set:'cl_cosubord', label='Purpose'</value> |
|---|
| 446 |
<value name="cl_cosubord:Restatement">Label set:'cl_cosubord', label='Restatement'</value> |
|---|
| 447 |
<value name="cl_cosubord:Solutionhood">Label set:'cl_cosubord', label='Solutionhood'</value> |
|---|
| 448 |
<value name="cl_cosubord:Summary">Label set:'cl_cosubord', label='Summary'</value> |
|---|
| 449 |
<value name="cl_cosubord:Unconditional">Label set:'cl_cosubord', label='Unconditional'</value> |
|---|
| 450 |
<value name="cl_cosubord:Unless">Label set:'cl_cosubord', label='Unless'</value> |
|---|
| 451 |
<value name="cl_cosubord:Unstated_relation">Label set:'cl_cosubord', label='Unstated_relation'</value> |
|---|
| 452 |
<value name="cl_cosubord:Volitional_cause">Label set:'cl_cosubord', label='Volitional_cause'</value> |
|---|
| 453 |
<value name="cl_cosubord:Volitional_result">Label set:'cl_cosubord', label='Volitional_result'</value> |
|---|
| 454 |
</edgelabel> |
|---|
| 455 |
</annotation> |
|---|
| 456 |
</head> |
|---|
| 457 |
<body> |
|---|
| 458 |
<s id="s10008"> |
|---|
| 459 |
<graph root="nt10008" discontinuous="false"> |
|---|
| 460 |
<terminals> |
|---|
| 461 |
<t id="t10009" monad="0" line1="bÉ-" line2="" line3="tag" line4="P" line5="lemma" /> |
|---|
| 462 |
<t id="t10010" monad="1" line1="rÄ?šît" line2="" line3="tag" line4="beginning" line5="lemma" /> |
|---|
| 463 |
<t id="t10011" monad="2" line1="bÄrÄ?" line2="" line3="tag" line4="create" line5="lemma" /> |
|---|
| 464 |
<t id="t10012" monad="3" line1="?ÄlÅhîm" line2="" line3="tag" line4="God" line5="lemma" /> |
|---|
| 465 |
<t id="t10013" monad="4" line1="?Ät" line2="" line3="tag" line4="P" line5="lemma" /> |
|---|
| 466 |
<t id="t10014" monad="5" line1="ha-" line2="" line3="tag" line4="ART" line5="lemma" /> |
|---|
| 467 |
<t id="t10015" monad="6" line1="ššÄmayim" line2="" line3="tag" line4="sky" line5="lemma" /> |
|---|
| 468 |
<t id="t10016" monad="7" line1="wÉ-" line2="" line3="tag" line4="CONJ" line5="lemma" /> |
|---|
| 469 |
<t id="t10017" monad="8" line1="?Ät" line2="" line3="tag" line4="P" line5="lemma" /> |
|---|
| 470 |
<t id="t10018" monad="9" line1="hÄ-" line2="" line3="tag" line4="ART" line5="lemma" /> |
|---|
| 471 |
<t id="t10019" monad="10" line1="?Ärec" line2="" line3="tag" line4="earth" line5="lemma" /> |
|---|
| 472 |
</terminals> |
|---|
| 473 |
<nonterminals> |
|---|
| 474 |
<nt id="nt10008" treestate="EXPANDED" cat="Text:Text"> |
|---|
| 475 |
<edge idref="nt10043"/> |
|---|
| 476 |
</nt> |
|---|
| 477 |
<nt id="nt10043" treestate="EXPANDED" cat="RRG:CLAUSE"> |
|---|
| 478 |
<edge idref="nt10036"/> |
|---|
| 479 |
<edge idref="nt10037"/> |
|---|
| 480 |
<edge idref="nt10038"/> |
|---|
| 481 |
<edge idref="nt10041"/> |
|---|
| 482 |
</nt> |
|---|
| 483 |
<nt id="nt10036" treestate="COLLAPSED" cat="Phrase:PP"> |
|---|
| 484 |
<edge idref="nt10025"/> |
|---|
| 485 |
<edge idref="nt10024"/> |
|---|
| 486 |
</nt> |
|---|
| 487 |
<nt id="nt10025" treestate="COLLAPSED" cat="XBar:P"> |
|---|
| 488 |
<edge idref="t10009"/> |
|---|
| 489 |
</nt> |
|---|
| 490 |
<nt id="nt10024" treestate="COLLAPSED" cat="XBar:N"> |
|---|
| 491 |
<edge idref="t10010"/> |
|---|
| 492 |
</nt> |
|---|
| 493 |
<nt id="nt10037" treestate="COLLAPSED" cat="Phrase:VP"> |
|---|
| 494 |
<edge idref="nt10023"/> |
|---|
| 495 |
</nt> |
|---|
| 496 |
<nt id="nt10023" treestate="COLLAPSED" cat="XBar:V"> |
|---|
| 497 |
<edge idref="t10011"/> |
|---|
| 498 |
</nt> |
|---|
| 499 |
<nt id="nt10038" treestate="COLLAPSED" cat="Phrase:NP"> |
|---|
| 500 |
<edge idref="nt10026"/> |
|---|
| 501 |
</nt> |
|---|
| 502 |
<nt id="nt10026" treestate="COLLAPSED" cat="XBar:N"> |
|---|
| 503 |
<edge idref="t10012"/> |
|---|
| 504 |
</nt> |
|---|
| 505 |
<nt id="nt10041" treestate="COLLAPSED" cat="Phrase:PP"> |
|---|
| 506 |
<edge idref="nt10039"/> |
|---|
| 507 |
<edge idref="nt10032"/> |
|---|
| 508 |
<edge idref="nt10040"/> |
|---|
| 509 |
</nt> |
|---|
| 510 |
<nt id="nt10039" treestate="COLLAPSED" cat="Phrase:NP"> |
|---|
| 511 |
<edge idref="nt10031"/> |
|---|
| 512 |
<edge idref="nt10028"/> |
|---|
| 513 |
<edge idref="nt10029"/> |
|---|
| 514 |
</nt> |
|---|
| 515 |
<nt id="nt10031" treestate="COLLAPSED" cat="XBar:P"> |
|---|
| 516 |
<edge idref="t10013"/> |
|---|
| 517 |
</nt> |
|---|
| 518 |
<nt id="nt10028" treestate="COLLAPSED" cat="XBar:D"> |
|---|
| 519 |
<edge idref="t10014"/> |
|---|
| 520 |
</nt> |
|---|
| 521 |
<nt id="nt10029" treestate="COLLAPSED" cat="XBar:N"> |
|---|
| 522 |
<edge idref="t10015"/> |
|---|
| 523 |
</nt> |
|---|
| 524 |
<nt id="nt10032" treestate="COLLAPSED" cat="XBar:P"> |
|---|
| 525 |
<edge idref="t10016"/> |
|---|
| 526 |
</nt> |
|---|
| 527 |
<nt id="nt10040" treestate="COLLAPSED" cat="Phrase:NP"> |
|---|
| 528 |
<edge idref="nt10033"/> |
|---|
| 529 |
<edge idref="nt10034"/> |
|---|
| 530 |
<edge idref="nt10035"/> |
|---|
| 531 |
</nt> |
|---|
| 532 |
<nt id="nt10033" treestate="COLLAPSED" cat="XBar:P"> |
|---|
| 533 |
<edge idref="t10017"/> |
|---|
| 534 |
</nt> |
|---|
| 535 |
<nt id="nt10034" treestate="COLLAPSED" cat="XBar:D"> |
|---|
| 536 |
<edge idref="t10018"/> |
|---|
| 537 |
</nt> |
|---|
| 538 |
<nt id="nt10035" treestate="COLLAPSED" cat="XBar:N"> |
|---|
| 539 |
<edge idref="t10019"/> |
|---|
| 540 |
</nt> |
|---|
| 541 |
</nonterminals> |
|---|
| 542 |
</graph> |
|---|
| 543 |
</s> |
|---|
| 544 |
</body></corpus> |
|---|