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

μὲν / δὲ and other "scattered clauses" #7

Open
jonathanrobie opened this issue Jun 13, 2017 · 5 comments
Open

μὲν / δὲ and other "scattered clauses" #7

jonathanrobie opened this issue Jun 13, 2017 · 5 comments

Comments

@jonathanrobie
Copy link
Member

jonathanrobie commented Jun 13, 2017

James Tauber posted this sentence from Herodotus on his blog:

τὰ ἄχθεα οἱ μὲν ἄνδρες ἐπὶ τῶν κεφαλέων φορέουσι, αἱ δὲ γυναῖκες ἐπὶ τῶν ὤμων.

The shared object and elision cannot currently be captured in Treedown. This is equivalent to:

cj >
    s οἱ 
    cj* μὲν 
    s ἄνδρες 
    o τὰ ἄχθεα 
    + ἐπὶ τῶν κεφαλέων 
    v φορέουσι
cj >
    s αἱ 
    cj* δὲ 
    s γυναῖκες 
    o τὰ ἄχθεα 
    + ἐπὶ τῶν ὤμων 
    v φορέουσι

Treedown has two constraints on our solution to this problem:

  • Treedown maintains word order
  • Treedown expects the constituents of a clause to occur at the same level

How do we best model this? Here is one possibility:

.1 τὰ ἄχθεα             # give this a numeric identifier, but don't label it as part of a clause at this level
cj >
    s οἱ 
    cj* μὲν 
    s ἄνδρες 
    o.1                        # the object is whatever .1 has been bound to
    + ἐπὶ τῶν κεφαλέων 
    v.2 φορέουσι       # specifies the verb and binds it to .2 so it can be shared with another clause
cj >
    s αἱ 
    cj* δὲ 
    s γυναῖκες 
    o.1                         # the object is whatever .1 has been bound to
    + ἐπὶ τῶν ὤμων 
    v.2                         # the verb is whatever .2 has been bound to

The lifetime of references should be considered carefully, see Issue #6.

@jonathanrobie
Copy link
Member Author

Some New Testament examples:

  • Matt 16:3 τὸ μὲν πρόσωπον τοῦ οὐρανοῦ γινώσκετε διακρίνειν, τὰ δὲ σημεῖα τῶν καιρῶν οὐ δύνασθε;
  • Matt 16:13-14 Ἐλθὼν δὲ ὁ Ἰησοῦς εἰς τὰ μέρη Καισαρείας τῆς Φιλίππου ἠρώτα τοὺς μαθητὰς αὐτοῦ λέγων· Τίνα λέγουσιν οἱ ἄνθρωποι εἶναι τὸν υἱὸν τοῦ ἀνθρώπου; οἱ δὲ εἶπαν· Οἱ μὲν Ἰωάννην τὸν βαπτιστήν, ἄλλοι δὲ Ἠλίαν, ἕτεροι δὲ Ἰερεμίαν ἢ ἕνα τῶν προφητῶν.
  • Matt 22:5 οἱ δὲ ἀμελήσαντες ἀπῆλθον, ὃς μὲν εἰς τὸν ἴδιον ἀγρόν, ὃς δὲ ἐπὶ τὴν ἐμπορίαν αὐτοῦ·

μὲν is frequently associated with this issue.

@jtauber
Copy link
Collaborator

jtauber commented Jun 15, 2017

There are four distinct issues going on with the Herodotus example, some of which could be solved independently:

  • coordination
  • postposition
  • topicalisation
  • gapping

@jonathanrobie
Copy link
Member Author

jonathanrobie commented Jun 15, 2017 via email

@mwpalmer
Copy link

I think your "one possibility" presented above is easy to follow. I like it.

@jtauber
Copy link
Collaborator

jtauber commented Jun 16, 2017

I like the "one possibility" approach too for handling the topicalisation and gapping.

This was referenced Jul 16, 2017
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

3 participants