Greek NT Information Structure¶
Information structure in the Greek NT is largely signaled by postpositive discourse particles (δέ, γάρ, οὖν, μέν, ἀλλά) and explicit subject pronouns (which are only used when contrast/focus is intended, since verb endings already encode person/number).
| Metric | What it signals |
|---|---|
| δέ/1k | Topic shift / continuation (ubiquitous in narrative) |
| γάρ/1k | Explanatory / given information |
| οὖν/1k | Inferential / resultative |
| μέν/1k | Correlative μέν...δέ contrast |
| ἀλλά/1k | Adversative / strong contrast |
| καί/1k | Additive / paratactic |
| Explicit subj % | Emphasis or focus on the subject |
| Asyndeton % | No connective particle (asyndeton = abrupt, emphatic) |
Note: These are clause-linking proxies, not a full pragmatic analysis.
References:
- Runge, Steven. Discourse Grammar of the Greek New Testament (2010)
- Levinsohn, Stephen. Discourse Features of New Testament Greek (2nd ed., 2000)
- BBG Chapter 31+ (subjunctive/purpose/conditional — hypotactic constructions)
import sys
sys.path.insert(0, '../../../src')
from bible_grammar import (
nt_information_profile, nt_clause_linking_comparison,
print_nt_information_profile, print_nt_clause_linking_comparison,
nt_clause_linking_chart, nt_information_heatmap,
)
import pandas as pd
1. Overview — Single Book Profile¶
# Luke — elevated style, abundant discourse connectives
print_nt_information_profile('Luk')
# Romans — Paul's most elaborate argument; heavy γάρ usage expected
print_nt_information_profile('Rom')
# Mark — paratactic, simple; low particle density expected
print_nt_information_profile('Mrk')
2. Gospels and Acts Comparison¶
Luke is known for elevated γάρ/δέ usage; Mark for paratactic καί. John has a distinctive explicit-pronoun focus (ἐγώ εἰμι sayings).
gospels = ['Mat', 'Mrk', 'Luk', 'Jhn', 'Act']
print_nt_clause_linking_comparison(gospels)
nt_clause_linking_chart(gospels)
3. Pauline Letters — γάρ as Argumentative Connective¶
Paul is the dominant user of γάρ in the NT. Romans and Galatians are his most argumentative letters; the Pastorals are more practical/instructional. Do the γάρ densities reflect that?
pauline = ['Rom', '1Co', '2Co', 'Gal', 'Eph', 'Php', 'Col', '1Th', '1Ti', '2Ti', 'Tit']
print_nt_clause_linking_comparison(pauline)
nt_clause_linking_chart(pauline)
# Full NT sorted by γάρ density
all_nt = ['Mat', 'Mrk', 'Luk', 'Jhn', 'Act', 'Rom', '1Co', '2Co',
'Gal', 'Eph', 'Php', 'Col', '1Th', '1Ti', 'Heb', 'Jas', '1Pe', '1Jn', 'Rev']
df_all = nt_clause_linking_comparison(all_nt)
df_all[['de_per1k', 'gar_per1k', 'oun_per1k', 'kai_per1k', 'explicit_subj_pct']].sort_values(
'gar_per1k', ascending=False
)
4. Luke-Acts Stylistic Unity¶
If Luke and Acts share an author, their discourse particle profiles should cluster together. δέ, οὖν, and γάρ are all known Lukan markers.
print_nt_clause_linking_comparison(['Mat', 'Mrk', 'Luk', 'Act', 'Jhn'])
5. Johannine Signature — Explicit Subjects and Asyndeton¶
John's Gospel is known for the explicit ἐγώ εἰμι (I AM) sayings and for a distinct clause-linking style. The explicit subject metric should be elevated in John.
johannine = ['Jhn', '1Jn', '2Jn', '3Jn', 'Rev']
print_nt_clause_linking_comparison(johannine)
# Full NT heatmap
nt_information_heatmap(all_nt)
6. Pedagogical Note — Parataxis vs. Hypotaxis in Translation¶
The LXX (Septuagint) regularly converts Hebrew parataxis into Greek hypotaxis. This table shows how the NT books themselves vary on the parataxis spectrum (measured by καί density, a proxy for additive coordination).
# Most paratactic (high καί) vs. most hypotactic (low καί, high γάρ/οὖν)
df_all[['kai_per1k', 'gar_per1k', 'oun_per1k', 'asyndeton_pct']].sort_values(
'kai_per1k', ascending=False
)