Practical Grammar 6

From English Grammar
Jump to navigation Jump to search

Governable grammatical functions

In linguistics, a head governs a property of another expression if it requires this expression to have that property. Governable properties include grammatical functions, cases, and particular prepositions.

In Lexical-Functional Grammar, the governable grammatical functions are those which may be listed in the PRED values of meaningful words The textbook (p. 21) gives a complete list:

Governable grammatical functions: SUBJ, OBJ, OBJ-θ, OBL-θ, POSS, COMP, and XCOMP.

There are other GFs, for instance TOPIC and FOCUS, but heads cannot govern those.

The Greek letter θ in the functions OBJ-θ and OBL-θ stands for the name of a thematic role (the thematic roles are listed on p. 13 in the textbook). Thus, OBL-LOC is the GF of a locative PP (sit at the window), OBL-BEN the GF of a benefactive PP (bake a cake for Mary). The only thematic role that appears in OBJ-θ is THEME, the second object of verbs of giving and showing.

Here are some comments on the functions other than SUBJ and OBJ:

  • OBJ-THEME: the GF of the second NP object of a ditransitive verb like give (e.g. give Mary a present)
  • OBL-θ, for instance OBL-LOC: the GF of a PP which is a locative complement of a verb like sit (e.g. sit at the window)
  • POSS: the GF of the possessor within an NP (e.g. my book)
  • COMP: the GF of a finite complement clause complement of a verb like say (e.g. said that Mary called)
  • XCOMP: the GF of non-finite phrases with understood subjects (e.g. Lilly tried to leave)

The Completeness and Coherence Conditions

Words may specify in their lexical entries that they govern one or more GFs. These GFs are mentioned in the word's PRED value, e.g.

(1) disappear: [PRED   'DISAPPEAR<SUBJ>']
(2) see: [PRED   'SEE<SUBJ, OBJ>']

This means that the verb disappear governs one GF, namely a SUBJ and the verb see governs two GFs, a SUBJ and an OBJ. As a result, these verbs must appear with exactly these GFs, neither more, nor less. This is ensured by the following two principles:

The Completeness Condition (p. 21)
All governable functions which are part of th value of a PRED feature must be present in the local f-structure. All functions that have a θ-role must themselves have a PRED value.

This is the "no less" part from above: the f-structure of a PRED must contain at least the GFs which it selects in its PRED value.

The "no more" part is stated in the

Coherence Condition (p. 22)
All governable functions present in an f-structure must occur in the value of a local PRED feature. All functions that have a PRED value must have a θ-role.

So, an f-structure is complete and coherent only if there is a 1:1 relation between the GFs listed in its PRED value and the actual GFs present in the f-structure! If this is not the case, then the f-structure is ill-formed.

Governable features

Above, it was said that not only the GFs but also other properties of its dependents can be governed by a selecting head. These include inflectional features like PERS, NUM, and CASE. In other words, a head can require that its dependents have particular values for such features. In this section, we will see how this is done.

In Week 3, we already saw how features can be added to words themselves. There we formulated lexical entries like the following:

this D
     [PERS:3,
      NUM:sg];

We can do the same for defining pronouns:

she N
    [PERS:3,
     NUM:sg,
     CASE:nom];
me N
   [PERS:1,
    NUM:sg,
    CASE:acc];

We now need to ensure that only expressions with features like those of she can act as subjects of a verb like disappears. This is easy to accomplish: in order for disappear to impose feature values on its SUBJ, it can simply refer to the f-structure of that SUBJ, as follows:

disappears D
           [PRED   'DISAPPEAR<SUBJ>',
            PERS:3,
            NUM:sg,
            SUBJ   [...]];

The presence of a SUBJ in the verb's f-structure is guaranteed by Completeness: since the verb selects a SUBJ in its PRED value, there has to be a SUBJ. And that subject has its own f-structure. Any feature-values pairs in the place of the dots inside the embedded brackets above must be present in the f-structure of the SUBJ. This is an example of feature government.

Exercise

1. Go to https://xlfg.labri.fr/ and log in.
2. To the verb disappears, add constraints that ensure that its SUBJ is third person singular and bears nominative case.
3. Add the following test sentences:

She disappears
*We disappears
*Her disappears

4. Parse.

Macros

The treatment of the present tense forms other than the third person singular is more complicated. An unmarked form like disappear can be 1sg, 2sg, 1pl, 2pl, and 3pl. We need an efficient way of encoding this informtion. To this end, we introduce macros, i.e. abbreviations that we define.

We start small. Since there are so many third person singular verbs, we often have to write

[...,
 PERS:3,
 NUM:sg,
 ...]

This is annoying. To make life easier on us, we can define a macro which allows us to encode this information in a shorter way. A macro is a statement of the following form:

Macro format
@macro-name: attribute:value;

You can also have several attribute-value statements on the right. The statements are separated by commas. We will see examples presently.

So, let us define our first two macros:

@s: NUMBER:sg;
@p: NUMBER:pl;

The first macro says that we can use the expression "@s" to abbreviate "NUMBER:sg".

Here are macros for different person values:

@_1: PERS:1;
@_2: PERS:2;
@_3: PERS:3;

It get better: the definition of one macro may contain other macro calls (a macro calls is the use of a macro name in an environment where that macro is not defined). The examples below illustrate this:

@_1s: @_1, @s;
@_2s: @_2, @s;
@_3s: @_3, @s;
@_1p: @_1, @p;
@_2p: @_2, @p;
@_3p: @_3, @p;

The first line says that "@_1s" is short for "@_1, @s", which, when we unpack the two macros on the right means that "@_1s" is short for "PERS:1, NUM:sg". And the same for the five other person-number combinations.

Finally comes another cool feature. Macros can contain the symbol "|" (= stroke), which means "or". Here is an example:

@_12: PERS:1|2;

Of course, this says that "@_12" is short for "the PERS value can be 1 or 2".

Now we have all the ingredients to say in a relatively short manner that forms like disappear are compatible with subjects that are non-third person singular:

@non3s: [@_12] | [@_3p] ;

Read this carefully: "@non3s" is the name of the macro. This name abbreviates a feature structure which is either first or second person or it is third person plural. Note that these are precisely the person-number combinations other than third perso singular!

Exercise

1. Go to https://xlfg.labri.fr/ and log in.
2. Add all the macros above in the Declarations editor. 3. Add the verb disappear to the lexicon and add constraints that ensure that its SUBJ is non-third person singular and bears nominative case.
4. Add the following test sentences:

I disappear
You disappear
*She disappear

5. Parse.