Charnavel & Mateu (2015): The Clitic Logophoric Restriction #
The Clitic Binding Restriction Revisited: Evidence for Antilogophoricity. The Linguistic Review 32(4).
Summary #
[CM15] (C&M) reanalyze the restriction on accusative clitics in Romance clitic clusters. Earlier work (Bhatt & Šimík 2009) attributed the restriction to binding; C&M's grammaticality experiment (97 French + 35 Spanish speakers, 9 conditions) shows that the relevant factor is antilogophoricity, not binding. Their generalization (eq. 26):
Clitic Logophoric Restriction (CLR): When a third person dative clitic and an accusative clitic co-occur in a cluster, the accusative clitic cannot corefer with a logophoric center.
Local apparatus #
C&M propose a three-level hierarchy of logophoric centers (eq. 53–54):
discourse participant > empathy locus > attitude holder. Each center is
characterised by a feature subset of {A, B, C} (eq. 63):
- discourse participant =
{A, B} - empathy locus =
{B, C} - attitude holder =
{C}
Antilogophoric clash occurs when two centers in the same domain share a feature (equivalent to: two adjacent-or-identical positions on the hierarchy). PCC and CLR are both instances:
- PCC = discourse participant + empathy locus (share
B) - CLR = empathy locus + attitude holder (share
C)
Disagreement with [PZ18] #
C&M unify CLR and PCC under one mechanism. P&Z (page 1308) explicitly disagree: "We do not think the CLR and the PCC should be unified along the lines suggested by Charnavel and Mateu (2015). The two phenomena are related but nevertheless distinct."
Three types of logophoric center, ordered by degree of perspective integration in the discourse (paper eq. 54: discourse participant > empathy locus > attitude holder).
- discourseParticipant : LogoCenter
Speaker / addressee — directly defining the discourse.
- empathyLocus : LogoCenter
Event participant the speaker empathizes with (Kuno's empathy locus). In Romance, typically the 3rd-person dative clitic.
- attitudeHolder : LogoCenter
Attitude holder whose thoughts/discourse are reported. In Romance, typically a 3rd-person accusative clitic read de se.
Instances For
Equations
- CharnavelMateu2015.instDecidableEqLogoCenter x✝ y✝ = if h : x✝.ctorIdx = y✝.ctorIdx then isTrue ⋯ else isFalse ⋯
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
Equations
- One or more equations did not get rendered due to their size.
The three abstract logophoric features. B expresses the
speaker-component (shared by discourse participants and empathy loci);
C expresses perspectival distance from the speaker (shared by empathy
loci and attitude holders).
- A : LogoFeature
- B : LogoFeature
- C : LogoFeature
Instances For
Equations
- CharnavelMateu2015.instDecidableEqLogoFeature x✝ y✝ = if h : x✝.ctorIdx = y✝.ctorIdx then isTrue ⋯ else isFalse ⋯
Equations
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Feature decomposition (paper eq. 63).
Equations
- CharnavelMateu2015.LogoCenter.discourseParticipant.features = {CharnavelMateu2015.LogoFeature.A, CharnavelMateu2015.LogoFeature.B}
- CharnavelMateu2015.LogoCenter.empathyLocus.features = {CharnavelMateu2015.LogoFeature.B, CharnavelMateu2015.LogoFeature.C}
- CharnavelMateu2015.LogoCenter.attitudeHolder.features = {CharnavelMateu2015.LogoFeature.C}
Instances For
Two centers clash iff their feature sets share at least one feature. Equivalent to "identical or adjacent on the hierarchy" (paper eq. 54).
Equations
- CharnavelMateu2015.Clash x y = (x.features ∩ y.features).Nonempty
Instances For
C&M's antilogophoric intervention (paper §3.5.2, generalising eq. 64): a configuration of logophoric centers in a single domain is antilogophoric iff some pair of distinct centers clash.
Note: a single center never clashes with itself in this formulation —
the "identical centers" case of (54) corresponds to multiple positions
bearing the same center type, not the abstract type clashing with
itself. We model the multi-position case with a List.
Equations
- CharnavelMateu2015.Antilogophoric centers = ∃ (i : Fin centers.length) (j : Fin centers.length), i ≠ j ∧ CharnavelMateu2015.Clash centers[i] centers[j]
Instances For
Equations
PCC clash: discourse participant (1/2 clitic) + empathy locus
(3.dat clitic) share feature B.
CLR clash: empathy locus (3.dat) + attitude holder (3.acc de se)
share feature C.
Discourse participant + attitude holder do not clash — no shared feature. This is the licit configuration (Table 3 final row).
The full Table 3 prediction: clash iff the pair shares a feature.
A test condition in C&M's grammaticality experiment, parameterised by the three crossed factors (paper Table 1). The 9 conditions enumerate {c-command, no c-command} × {logophoric centre as antecedent, not} × {3.dat dative clitic, 1/2.dat dative clitic}, dropping the "bound 3" sub-case (their condition 3) for which they collapse the same prediction as condition 1.
- cCommandingAntecedent : Bool
Does the antecedent c-command the accusative clitic?
- logoCenterAntecedent : Bool
Is the antecedent a logophoric centre (attitude holder)?
- dative3rdPerson : Bool
Is the dative clitic a 3rd-person form (an empathy locus)?
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
Equations
- One or more equations did not get rendered due to their size.
Instances For
C&M's hypothesis (paper §2.1): a sentence is ungrammatical iff the antecedent of the accusative clitic is a logophoric centre AND the dative clitic is 3rd person. C-command is not the relevant factor (contra Bhatt & Šimík).
Equations
- CharnavelMateu2015.predictsUngrammatical c = (c.logoCenterAntecedent = true ∧ c.dative3rdPerson = true)
Instances For
Paper Table 2: the experimental result. Conditions 1, 3, 6 (the three rows with logo-centre antecedent + 3.dat) received significantly lower scores than controls; the other six conditions did not. We collapse Table 1's "bound 3" condition into the 3.dat case.
The key empirical finding (paper §2.4, conditions 4 vs 6): c-command is irrelevant; only logophoric centrehood + 3rd-person dative matter.
A clitic-cluster configuration as a list of two logophoric centres (one for each clitic). The dative is read first, then the accusative.
Equations
Instances For
The Clitic Logophoric Restriction (paper eq. 26): a configuration is blocked when its two centres are antilogophoric.
Equations
- CharnavelMateu2015.CLRViolated cfg = CharnavelMateu2015.Clash cfg.1 cfg.2
Instances For
The canonical CLR configuration: 3.dat (empathy locus) + 3.acc de se (attitude holder). Violation.
The canonical PCC configuration in C&M's terms: 3.dat (empathy locus) + 1/2.acc (discourse participant). Violation under the same mechanism.
C&M's unification claim (paper §3.4): both phenomena are instances of
CLRViolated. The bridge file documents P&Z's dissent.
Spanish me lo — 1.DAT.ACC. Under C&M's typology, the 1.dat clitic is a discourse participant; lo is the accusative. The cluster is licit when lo is not read with an attitude-holder antecedent (paper §1.1, ex. 6 type: licit accusative).
Spanish te lo — 2.DAT + 3.ACC. Same pattern: 2.dat is a discourse participant; the cluster is licit on non-attitude-holder readings.
Spanish le lo (which surfaces as se lo by the spurious-se rule): 3.DAT + 3.ACC. The CLR-relevant configuration — empathy locus + attitude holder. Bad under de se readings of lo (paper §1, ex. 2b; §3.4 implementation).
The clash-yielding cluster for Spanish se lo / le lo under a de se reading: empathy + attitude holder.
The PCC pattern *le me / *le te in Spanish: 3.dat + 1/2.acc — empathy locus + discourse participant.