Work in progress
Greek has many particles, such as μέν and δέ, that are used to indicate contrast or emphasis.
The particle δέ, commonly found in the Greek New Testament, can be used in either an adversative (contrasting) or copulative (confirming) manner, affecting the meaning and interpretation of the surrounding text. The challenge in translating δέ into English arises due to the inherent ambiguity of the particle. English equivalents such as "but," "and," or "now" often fail to capture the full range of its meaning.
In its adversative usage, δέ introduces a contrast or a counterpoint to what has been previously mentioned. It serves to emphasize a distinction or a shift in thought, often presenting an alternative viewpoint or introducing a new topic. This contrasting function of δέ can be theologically significant as it highlights the tensions or conflicts within the text, revealing different perspectives or opposing ideas.
In its copulative usage, δέ functions as a confirming particle, connecting statements or thoughts in a continuous and cohesive manner. It serves to link ideas together, reinforcing the flow of the discourse. This copulative function of δέ is relevant in conveying theological concepts by maintaining a logical progression in the text, presenting ideas that build upon each other or providing additional supporting information.
Identifying the use of δέ is easily done using Text-Fabric. The challenge lies in creating queries that gather relevant information regarding the syntactical surroundings, which could hint at whether δέ is intended adversative or copulative.
%load_ext autoreload
%autoreload 2
# Loading the Text-Fabric code
# Note: it is assumed Text-Fabric is installed in your environment
from tf.fabric import Fabric
from tf.app import use
# load the N1904 app and data
N1904 = use ("tonyjurg/Nestle1904GBI", version="0.4", hoist=globals())
Locating corpus resources ...
Name | # of nodes | # slots/node | % coverage |
---|---|---|---|
book | 27 | 5102.93 | 100 |
chapter | 260 | 529.92 | 100 |
sentence | 5720 | 24.09 | 100 |
verse | 7943 | 17.35 | 100 |
clause | 16124 | 8.54 | 100 |
phrase | 72674 | 1.90 | 100 |
word | 137779 | 1.00 | 100 |
# The following will push the Text-Fabric stylesheet to this notebook (to facilitate proper display with notebook viewer)
N1904.dh(N1904.getCss())
This can be done using a straight forward query. The node numbers of sentence,clause and phrase containing the δέ will also be gathered allowing easier further processing.
# Define the query template
DeQuery= '''
sentence
clause
phrase
word lemma=δέ
'''
# The following will create a list containing ordered tuples consisting of node numbers of the items as they appear in the query
DeResult = N1904.search(DeQuery)
0.13s 2787 results
for (sentence,clause,phrase,word) in DeResult:
# do something...
break
The scripts in this notebook require (beside text-fabric
) the following Python libraries to be installed in the environment:
{none}
You can install any missing library from within Jupyter Notebook using eitherpip
or pip3
.