When I parse “which 2 files separately are in this folder?” with ERG2020 I get (among others) the parse below that has the _separate_a_1(ie)
predication modifying the introduced variable of _in_p_loc
. I (hopefully correctly) interpret this to mean “in separately”:
[ "which 2 files separately are in this folder"
TOP: h0
INDEX: e2 [ e SF: ques TENSE: pres MOOD: indicative PROG: - PERF: - ]
RELS: < [ _which_q<0:5> LBL: h4 ARG0: x3 [ x PERS: 3 NUM: pl IND: + ] RSTR: h5 BODY: h6 ]
[ card<6:7> LBL: h7 ARG0: e9 [ e SF: prop TENSE: untensed MOOD: indicative PROG: bool PERF: - ] ARG1: x3 CARG: "2" ]
[ _file_n_of<8:13> LBL: h7 ARG0: x3 ARG1: i10 ]
[ _separate_a_1<14:24> LBL: h1 ARG0: i11 ARG1: e2 ]
[ _in_p_loc<29:31> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x12 [ x PERS: 3 NUM: sg IND: + ] ]
[ _this_q_dem<32:36> LBL: h13 ARG0: x12 RSTR: h14 BODY: h15 ]
[ _folder_n_of<37:43> LBL: h16 ARG0: x12 ARG1: i17 ] >
HCONS: < h0 qeq h1 h5 qeq h7 h14 qeq h16 > ]
┌── _file_n_of(x3,i10)
┌────── and(0,1)
┌────── _folder_n_of(x│2,i17) └ card(2,e9,x3)
_this_q_dem(x12,RSTR,BODY) │
└─ _which_q(x3,RSTR,BODY)
│ ┌── _separate_a_1(i11,e2)
└─ and(0,1)
└ _in_p_loc(e2,x3,x12)
But with the phrase “which two files together are in this folder”, I get 6 parses, only one of which uses in_p_loc
as the “verb” (i.e. instead of be_v
), and none of them have a form of “together” which references the index verb’s event variable as _separate_a_1
does above. They all use _together_p(ex)
. Below is the parse that is closest to the above example. Note that “which files simultaneously/jointly are in this folder?” do produce one in the form I’m expecting.
Two questions:
- Should there be an analogous parse to the above?
- Is
_together_p(ex)
acting like a kind of cardinal in the below phrase? Similiar to the waylittle-few_a(ex)
or_several_a_1(ex)
work? Or how should this be interpreted?
[ "which two files together are in this folder"
TOP: h0
INDEX: e2 [ e SF: ques TENSE: pres MOOD: indicative PROG: - PERF: - ]
RELS: < [ _which_q<0:5> LBL: h4 ARG0: x3 [ x PERS: 3 NUM: pl IND: + ] RSTR: h5 BODY: h6 ]
[ card<6:9> LBL: h7 ARG0: e9 [ e SF: prop TENSE: untensed MOOD: indicative PROG: bool PERF: - ] ARG1: x3 CARG: "2" ]
[ _file_n_of<10:15> LBL: h7 ARG0: x3 ARG1: i10 ]
[ _together_p<16:24> LBL: h7 ARG0: e11 [ e SF: prop TENSE: untensed MOOD: indicative PROG: - PERF: - ] ARG1: x3 ]
[ _in_p_loc<29:31> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x12 [ x PERS: 3 NUM: sg IND: + ] ]
[ _this_q_dem<32:36> LBL: h13 ARG0: x12 RSTR: h14 BODY: h15 ]
[ _folder_n_of<37:43> LBL: h16 ARG0: x12 ARG1: i17 ] >
HCONS: < h0 qeq h1 h5 qeq h7 h14 qeq h16 > ]
-- Parse #1, Tree #0:
┌──── _together_p(e11,x3)
│ ┌── _file_n_of(x3,i10)
┌────── and(0,1,2)
┌────── _folder_n_of(x│2,i17) │
│ │ └ card(2,e9,x3)
_this_q_dem(x12,RSTR,BODY) │
└─ _which_q(x3,RSTR,BODY)
└─ _in_p_loc(e2,x3,x12)