Overview

Relation to characters

flowchart TD

%% Layer 1

root([James and Adelle])

%% Layer 2

james([James])
adelle([Adelle])
both([Both])

root --- james
root --- both
root --- adelle

%% Layer 3

subgraph James [Responsibilities]
job([Job])
end

subgraph Both [Responsibilities]
support([Spouse Support])
church([Church])
family([Family])
end

subgraph Adelle [Responsibilities]
shopping([Shopping])
social([Social])
sideJobs([Side Jobs])
end

james --- job

both --- support
both --- church
both --- family

adelle --- shopping
adelle --- social
adelle --- sideJobs

%% Layer 4

subgraph jamesC [Characters]
clients1([Clients])
coworkers([Coworkers])
antagonists1([Antagonists])
end

subgraph bothC [Characters]
antagonists2([Antagonists])
children([Children])
relatives([Relatives])
friends2([Friends])
end

subgraph adelleC [Characters]
neighbors([Neighbors])
antagonists3([Antagonists])
clients2([Clients])
end

job --- clients1
job --- coworkers
social --- friends2
social --- neighbors

church --- friends2

job --- antagonists1

sideJobs --- clients2
church --- antagonists2
shopping --- antagonists3
family --- children
family --- relatives
family --- antagonists2
support --- antagonists2

Relation to themes

flowchart TD

%% Layer 1

root([James and Adelle])

%% Layer 2

james([James])
adelle([Adelle])
both([Both])

root --- james
root --- both
root --- adelle

%% Layer 3

subgraph James [Responsibilities]
job([Job])
end

subgraph Both [Responsibilities]
support([Spouse Support])
church([Church])
family([Family])
end

subgraph Adelle [Responsibilities]
homemaking([Homemaking])
shopping([Shopping])
end

james --- job

both --- support
both --- church
both --- family

adelle --- homemaking
adelle --- shopping

%% Layer 4

subgraph themes1 [Themes]
adventure1([Adventure])
idolatry1([Idolatry])
end

subgraph themes2 [Themes]
adventure2([Adventure])
survival2([Survival])
cozy2([Cozy])
idolatry2([Idolatry])
end

subgraph themes3 [Themes]
survival3([Survival])
cozy3([Cozy])
idolatry3([Idolatry])
end

job --- adventure1
job --- idolatry1

support --- idolatry2
church --- adventure2
church --- cozy2
family --- survival2

homemaking --- cozy3
homemaking --- idolatry3
shopping --- survival3

Child pages