-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path5_church-complex.html
More file actions
1251 lines (1217 loc) · 145 KB
/
5_church-complex.html
File metadata and controls
1251 lines (1217 loc) · 145 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head>
<meta charset="utf-8">
<meta name="generator" content="quarto-1.8.25">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
<meta name="author" content="Nicola Aravecchia">
<title>5 The Church Complex and Surrounding Structures – Amheida IV: ʿAin el-Gedida</title>
<style>
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
ul.task-list{list-style: none;}
ul.task-list li input[type="checkbox"] {
width: 0.8em;
margin: 0 0.8em 0.2em -1em; /* quarto-specific, see https://github.com/quarto-dev/quarto-cli/issues/4556 */
vertical-align: middle;
}
/* CSS for citations */
div.csl-bib-body { }
div.csl-entry {
clear: both;
margin-bottom: 0em;
}
.hanging-indent div.csl-entry {
margin-left:2em;
text-indent:-2em;
}
div.csl-left-margin {
min-width:2em;
float:left;
}
div.csl-right-inline {
margin-left:2em;
padding-left:1em;
}
div.csl-indent {
margin-left: 2em;
}</style>
<script src="site_libs/quarto-nav/quarto-nav.js"></script>
<script src="site_libs/quarto-nav/headroom.min.js"></script>
<script src="site_libs/clipboard/clipboard.min.js"></script>
<script src="site_libs/quarto-search/autocomplete.umd.js"></script>
<script src="site_libs/quarto-search/fuse.min.js"></script>
<script src="site_libs/quarto-search/quarto-search.js"></script>
<meta name="quarto:offset" content="./">
<link href="./6_west-complex.html" rel="next">
<link href="./4_excavations-outside.html" rel="prev">
<script src="site_libs/quarto-html/quarto.js" type="module"></script>
<script src="site_libs/quarto-html/tabsets/tabsets.js" type="module"></script>
<script src="site_libs/quarto-html/axe/axe-check.js" type="module"></script>
<script src="site_libs/quarto-html/popper.min.js"></script>
<script src="site_libs/quarto-html/tippy.umd.min.js"></script>
<script src="site_libs/quarto-html/anchor.min.js"></script>
<link href="site_libs/quarto-html/tippy.css" rel="stylesheet">
<link href="site_libs/quarto-html/quarto-syntax-highlighting-7b89279ff1a6dce999919e0e67d4d9ec.css" rel="stylesheet" id="quarto-text-highlighting-styles">
<script src="site_libs/bootstrap/bootstrap.min.js"></script>
<link href="site_libs/bootstrap/bootstrap-icons.css" rel="stylesheet">
<link href="site_libs/bootstrap/bootstrap-27c261d06b905028a18691de25d09dde.min.css" rel="stylesheet" append-hash="true" id="quarto-bootstrap" data-mode="light">
<script src="site_libs/quarto-contrib/glightbox/glightbox.min.js"></script>
<link href="site_libs/quarto-contrib/glightbox/glightbox.min.css" rel="stylesheet">
<link href="site_libs/quarto-contrib/glightbox/lightbox.css" rel="stylesheet">
<script id="quarto-search-options" type="application/json">{
"location": "sidebar",
"copy-button": false,
"collapse-after": 3,
"panel-placement": "start",
"type": "textbox",
"limit": 50,
"keyboard-shortcut": [
"f",
"/",
"s"
],
"show-item-context": false,
"language": {
"search-no-results-text": "No results",
"search-matching-documents-text": "matching documents",
"search-copy-link-title": "Copy link to search",
"search-hide-matches-text": "Hide additional matches",
"search-more-match-text": "more match in this document",
"search-more-matches-text": "more matches in this document",
"search-clear-button-title": "Clear",
"search-text-placeholder": "",
"search-detached-cancel-button-title": "Cancel",
"search-submit-button-title": "Submit",
"search-label": "Search"
}
}</script>
<link rel="stylesheet" href="assets/css/isaw-monographs-style.css">
</head>
<body class="nav-sidebar floating slimcontent quarto-light">
<div id="quarto-search-results"></div>
<header id="quarto-header" class="headroom fixed-top">
<nav class="quarto-secondary-nav">
<div class="container-fluid d-flex">
<button type="button" class="quarto-btn-toggle btn" data-bs-toggle="collapse" role="button" data-bs-target=".quarto-sidebar-collapse-item" aria-controls="quarto-sidebar" aria-expanded="false" aria-label="Toggle sidebar navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
<i class="bi bi-layout-text-sidebar-reverse"></i>
</button>
<nav class="quarto-page-breadcrumbs" aria-label="breadcrumb"><ol class="breadcrumb"><li class="breadcrumb-item"><a href="./5_church-complex.html"><span class="chapter-number">5</span> <span class="chapter-title">The Church Complex and Surrounding Structures</span></a></li></ol></nav>
<a class="flex-grow-1" role="navigation" data-bs-toggle="collapse" data-bs-target=".quarto-sidebar-collapse-item" aria-controls="quarto-sidebar" aria-expanded="false" aria-label="Toggle sidebar navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
</a>
<button type="button" class="btn quarto-search-button" aria-label="Search" onclick="window.quartoOpenSearch();">
<i class="bi bi-search"></i>
</button>
</div>
</nav>
</header>
<!-- content -->
<div id="quarto-content" class="quarto-container page-columns page-rows-contents page-layout-article">
<!-- sidebar -->
<nav id="quarto-sidebar" class="sidebar collapse collapse-horizontal quarto-sidebar-collapse-item sidebar-navigation floating overflow-auto">
<div class="pt-lg-2 mt-2 text-left sidebar-header sidebar-header-stacked">
<a href="./index.html" class="sidebar-logo-link">
</a>
<div class="sidebar-title mb-0 py-0">
<a href="./">Amheida IV: ʿAin el-Gedida</a>
</div>
</div>
<div class="mt-2 flex-shrink-0 align-items-center">
<div class="sidebar-search">
<div id="quarto-search" class="" title="Search"></div>
</div>
</div>
<div class="sidebar-menu-container">
<ul class="list-unstyled mt-1">
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./index.html" class="sidebar-item-text sidebar-link">
<span class="menu-text">Amheida IV: ʿAin el-Gedida</span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./0_contents.html" class="sidebar-item-text sidebar-link">
<span class="menu-text">Contents</span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./0_digital_statement.html" class="sidebar-item-text sidebar-link">
<span class="menu-text">Note on Digital Edition</span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./0_foreword.html" class="sidebar-item-text sidebar-link">
<span class="menu-text">Foreword</span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./0_preface.html" class="sidebar-item-text sidebar-link">
<span class="menu-text">Preface</span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./1_introduction.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">1</span> <span class="chapter-title">Introduction</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./2_survey.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">2</span> <span class="chapter-title">Topographical and Architectural Survey of Mounds I-V</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./3_mound-1.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">3</span> <span class="chapter-title">Mound I: The Church Complex</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./4_excavations-outside.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">4</span> <span class="chapter-title">Excavations Outside the Church Complex</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./5_church-complex.html" class="sidebar-item-text sidebar-link active">
<span class="menu-text"><span class="chapter-number">5</span> <span class="chapter-title">The Church Complex and Surrounding Structures</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./6_west-complex.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">6</span> <span class="chapter-title">The West Complex on Mound I</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./7_conclusions.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">7</span> <span class="chapter-title">Conclusions</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./8_la-ceramique.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">8</span> <span class="chapter-title">La céramique d’ʿAin el-Gedida</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./9_coins.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">9</span> <span class="chapter-title">Coins from the 2006–2008 Excavations</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./10_ostraka-and-graffiti.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">10</span> <span class="chapter-title">Ostraka and Graffiti</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./11_miscellaneous-objects.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">11</span> <span class="chapter-title">Small Finds from ʿAin el-Gedida: Other Categories</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./12_animal-bone-remains.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">12</span> <span class="chapter-title">Animal Bone Remains from ʿAin el-Gedida</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./references.html" class="sidebar-item-text sidebar-link">
<span class="menu-text">References</span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./errata.html" class="sidebar-item-text sidebar-link">
<span class="menu-text">Errata</span></a>
</div>
</li>
</ul>
</div>
</nav>
<div id="quarto-sidebar-glass" class="quarto-sidebar-collapse-item" data-bs-toggle="collapse" data-bs-target=".quarto-sidebar-collapse-item"></div>
<!-- margin-sidebar -->
<div id="quarto-margin-sidebar" class="sidebar margin-sidebar">
<nav id="TOC" role="doc-toc" class="toc-active">
<h2 id="toc-title">Table of contents</h2>
<ul>
<li><a href="#sec-5.1" id="toc-sec-5.1" class="nav-link active" data-scroll-target="#sec-5.1"><span class="header-section-number">5.1</span> The Development of the Church Complex</a></li>
<li><a href="#sec-5.2" id="toc-sec-5.2" class="nav-link" data-scroll-target="#sec-5.2"><span class="header-section-number">5.2</span> Patterns of Movement Inside the Complex and Access from Outside</a></li>
<li><a href="#ʿain-el-gedida-and-early-christian-architecture-in-egypt" id="toc-ʿain-el-gedida-and-early-christian-architecture-in-egypt" class="nav-link" data-scroll-target="#ʿain-el-gedida-and-early-christian-architecture-in-egypt"><span class="header-section-number">5.3</span> ʿAin el-Gedida and Early Christian Architecture in Egypt</a>
<ul class="collapse">
<li><a href="#sec-5.3.1" id="toc-sec-5.3.1" class="nav-link" data-scroll-target="#sec-5.3.1"><span class="header-section-number">5.3.1</span> Small East Church at Kellis/Ismant el-Kharab</a></li>
<li><a href="#kharga" id="toc-kharga" class="nav-link" data-scroll-target="#kharga"><span class="header-section-number">5.3.2</span> Kharga</a></li>
<li><a href="#beyond-the-great-oasis" id="toc-beyond-the-great-oasis" class="nav-link" data-scroll-target="#beyond-the-great-oasis"><span class="header-section-number">5.3.3</span> Beyond the <em>Great Oasis</em></a></li>
</ul></li>
<li><a href="#notes" id="toc-notes" class="nav-link" data-scroll-target="#notes"><span class="header-section-number">5.4</span> Notes</a></li>
</ul>
</nav>
</div>
<!-- main -->
<main class="content page-columns page-full" id="quarto-document-content">
<header id="title-block-header" class="quarto-title-block default">
<div class="quarto-title">
<h1 class="title"><span id="sec-chapter-5" class="quarto-section-identifier"><span class="chapter-number">5</span> <span class="chapter-title">The Church Complex and Surrounding Structures</span></span></h1>
</div>
<div class="quarto-title-meta">
<div>
<div class="quarto-title-meta-heading">Author</div>
<div class="quarto-title-meta-contents">
<p>Nicola Aravecchia </p>
</div>
</div>
</div>
</header>
<p><strong><em>This is an online digital edition from ISAW Digital Monographs. The print edition of this work can be consulted at <a href="https://isaw.nyu.edu/publications/isaw-monographs/ain-el-gedida">https://isaw.nyu.edu/publications/isaw-monographs/ain-el-gedida</a></em></strong></p>
<section id="sec-5.1" class="level2 page-columns page-full" data-number="5.1">
<h2 data-number="5.1" class="anchored" data-anchor-id="sec-5.1"><span class="header-section-number">5.1</span> The Development of the Church Complex</h2>
<p id="p1">
The excavation of the church complex of ʿAin el-Gedida uncovered several features that predate its latest construction phase. Ample evidence was collected about the reuse of earlier walls in the construction and alteration of the church and its adjoining rooms. The most noticeable example, already mentioned in the discussion of the archaeological remains, is the north–south wall (BF68 + AF98) found below floor level in rooms B5 and A46. The wall was partially razed down to foundation level to open space for the expansion of the two rooms to the west. It was also partly incorporated within the north and south walls of room B5 and possibly within the north wall of room A46.
</p>
<p id="p2">
Another feature that clearly testifies to the multi-phased construction process of the church complex is the mud-brick plug (AF76/BF66) built to seal the central doorway between rooms B5 and A46. The reasons for its construction could not be clarified beyond doubt during its archaeological investigation, but they might be related to a re-functionalization of room A46 and to the ensuing need of a higher degree of privacy and separation of room B5 from A46.
</p>
<div class="page-columns page-full"><p id="p3">
These are just two examples of the architectural features that provide incontrovertible evidence for the multifaceted history of the complex and, more in general, of the area on which it developed. The data they offer are significant but cannot be used as the only source of evidence for an in-depth discussion of the complex and its architectural development. Indeed, close attention must be paid to the structural relationships existing between each wall and its neighboring ones, in the attempt to reconstruct their relative chronology. In order to achieve this, the investigation of the complex included the excavation, along the walls of each room, of test trenches down to foundation level. These were an invaluable source of information and contributed, together with the more noticeable features mentioned above, to the identification of different construction phases within the area of the church complex. The results were partially presented above, included in the analysis of each room, but will be brought together and further discussed here, in order to gain a complete picture of the overall architectural development of the complex.
</p><div class="no-row-height column-margin column-container"><span class="margin-aside">p. 187</span></div></div>
<div id="plt-5.1" class="quarto-float quarto-figure quarto-figure-center anchored">
<figure class="quarto-float quarto-float-plt figure">
<div aria-describedby="plt-5.1-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<a href="assets/images/chapter-5/plt-5.1.jpg" class="lightbox" data-gallery="quarto-lightbox-gallery-1" title="Plate 5.1: Early structures in the area of the church complex."><img src="assets/images/chapter-5/plt-5.1.jpg" title="Plate 5.1: Early structures in the area of the church complex." class="img-fluid figure-img"></a>
</div>
<figcaption class="quarto-float-caption-bottom quarto-float-caption quarto-float-plt" id="plt-5.1-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Plate 5.1: Early structures in the area of the church complex.
</figcaption>
</figure>
</div>
<p id="p4">
Evidence was collected that testifies to the existence of buildings pre-dating the church and the set of interconnected rooms to the north. The walls of these structures were, as mentioned above, either razed or incorporated within the walls of the church complex. According to the available data, it was possible to identify at least three rooms in the area later occupied by rooms B5, B6, and A46 (<a href="#plt-5.1" class="quarto-xref">Plate <span>5.1</span></a>).<a href="#fn1" class="footnote-ref" id="fnref1" role="doc-noteref"><sup>1</sup></a>
</p>
<div class="page-columns page-full"><p id="p5">
To the north was room α, whose west wall was also the west wall of room B6 (BF72). The north side is preserved only in the foundations included in the threshold of the doorway leading into room B9 and in the east end of the north wall of staircase B8 (BF91). The latter wall was bonded with the east wall of room α, incorporated as the east side of rooms B8 and B6 (BF75). This wall originally continued south and formed a corner with the north wall (east half) of room A46, which supported two different vaults springing from its north and south faces. The south wall of room α is not preserved.
</p><div class="no-row-height column-margin column-container"><span class="margin-aside">p. 188</span></div></div>
<p id="p6">
To the southeast of α, room β occupied the eastern half of later room A46. Its north wall was the eastern half of the north wall of A46 (AF69) and two niches were symmetrically built within its south face. The west wall of β was the north–south razed wall (AF98) identified below floor level in room A46. It was possible to ascertain that its foundation courses are bonded with the remains of an east–west wall (AF103) running below the partition dividing room B5 from A46; therefore, the latter wall originally formed the south boundary of room β. It was not possible to identify the remains of its east wall.<a href="#fn2" class="footnote-ref" id="fnref2" role="doc-noteref"><sup>2</sup></a>
</p>
<p id="p7">
To the south of room β, and sharing with it the east–west wall found at foundation level, was room γ, extending through the eastern half of the later room B5. Its west side was delimited by the north–south wall (BF68) found at foundation level under the floor of the church. Traces of its east boundary (BF65) were identified below the sanctuary along the east side of the church, supporting the screen walls and the two semi-columns to the north and south of the apse. This foundation wall is bonded with the east–west partition (BF42) forming the south boundary (east half) of room B5; the two walls are, therefore, contemporary and part of an early construction episode, with the east–west wall originally built as the south edge of room γ. The same wall is also bonded, at its west end, with a stub (BF44) that was used, when room B5 was created, to join the east and west halves of the room’s south boundary. As already mentioned above, it is likely that this stub was originally part of the razed north–south wall that formed the west edge of room γ (as well as β).
</p>
<p id="p8">
Both rooms β and γ were covered with barrel-vaulted roofs, in which the vaults had an east–west orientation.
</p>
<p id="p9">
Room B10, excavated to the northwest of the church complex, was built to the west of room α. The east wall of B10 (BF103) abuts the west wall of α (and later room B6) (BF72) and, in its south half, the scanty remains of another wall against which the west wall of the later room A46 was built. On the basis of architectural evidence and of the ceramic findings collected during its excavation, it is possible to argue that room B10 predates the expansion of the church complex to the west.
</p>
<p id="p10">
Rooms α, β, and γ were substantially altered when the church complex was created in its full extent, involving the enlargement of rooms β and γ to the west and the addition of rooms B6–B9 to the north. The east wall of room α, bonded with the north wall of β, was partially demolished and a doorway (BF89) opened onto corridor B7.<a href="#fn3" class="footnote-ref" id="fnref3" role="doc-noteref"><sup>3</sup></a> The latter was created through the addition of an east–west wall (BF76) parallel to the north wall of room β, which was also subject to substantial alterations in its north face at this stage.
</p>
<div class="page-columns page-full"><p id="p11">
Room α was divided into two spaces, anteroom B6 and staircase B8, separated by an east– west oriented wall (BF73) that abutted both the east and west walls of room α. The south wall of room B6 (BF70) was built at this stage, abutting the north wall (west face) of β. A new barrel roof, with the vault oriented east–west, covered room B6. A doorway (AF100/BF88) was opened along the south wall (leading to later room A46); it was part of the same construction episode, as the threshold was bonded with the rest of the structure. Two additional doorways were set along the north boundary of anteroom B6: one (BF84), located near the east end, led to staircase B8; the other (BF86), placed against the northwest corner of the room, opened into a short vaulted passageway, which ran below the staircase and led into room B9. The construction of B9 belongs to the same phase of B6–B8, as testified to by its access only through room B6 and its southeast wall (BF115 + BF121), which was built as part of staircase B8.
</p><div class="no-row-height column-margin column-container"><span class="margin-aside">p. 189</span></div></div>
<p id="p12">
To the southeast of B6, rooms B5 and A46 were created by extending rooms β and γ to the west. To do so, the west wall of both spaces was razed, as well as the wall dividing the two rooms. A new east–west partition (AF72/BF58 + AF74/BF57 + AF75/BF55 + AF77/BF52) was built on top of the foundations of the earlier wall separating β from γ and two doorways were created; as already mentioned above, the larger opening, located in the middle of the wall, was bricked up at some point in antiquity (AF75/BF55). The south wall of room B6 functioned as the west section of the north wall of room A46; the south wall of room B5 was created by extending the original south wall of room γ to the west; in fact, the new section (BF45) was not built in line with the earlier wall, but slightly recessed into the room and the two sections were joined with a short diagonal partition (BF44); the latter might have incorporated a relic of the razed north– south wall that formed the west boundary of rooms β and γ. It has already been mentioned, in the discussion of corridor B11, that the reason for this irregular layout could lie in the complex rearrangement of space to the south of the church. During this process, involving the expansion of passageway B11 to the west, it was necessary to face the challenge of maintaining a sufficient width within the western addition to the corridor, which, due to its non-parallel north and south walls, substantially narrowed westwards. The existence of earlier structures to the south of the corridor’s western extension may have necessitated creating a recess within the southwest part of room B5.
</p>
<p id="p13">
As said above, the west wall of the church was created by building a thin facing against an earlier north–south wall (BF47).<a href="#fn4" class="footnote-ref" id="fnref4" role="doc-noteref"><sup>4</sup></a> The facing widened to the north, where it formed also the western boundary of the gathering hall. The west wall of rooms B5 and A46 is undoubtedly contemporary with the enlargement of the complex to the west, as the threshold of the western doorway (AF99/BF78) is bonded with it.
</p>
<p id="p14">
New vaults were built on the west sectors of both the church and the gathering hall to the north, paralleling the situation in the eastern half of both rooms. Originally, the vault springing from the south wall (east half) of the church was probably supported to the north by the east–west wall once separating rooms β and γ (and later razed). The later east–west wall between the two doorways had to support not only the new vaults covering the western halves of rooms B5 and A46, but also the northwest part of the (new) vaulted roof covering the eastern half of B5. Indeed, unequivocal traces of two rather different vault springs can be noticed on the south face of that wall.
</p>
<p id="p15">
Substantial alterations were also carried out at the eastern end of room γ/B5, with the razing of the east wall, except for its foundation courses, and the construction of the sanctuary. The north sector of the east wall, built to the north of the apse, continues further north and forms the east boundary of room A46 (AF71/BF127); its construction is therefore contemporary with the addition of the sanctuary to the church. Furthermore, the same north–south wall is bonded with the eastern sector of the wall dividing rooms B5 and A46 and is, consequently, part of the same episode as the creation of the apse.
</p>
<p id="p16">
During the archaeological investigation of the complex, data were collected suggesting that the walls of rooms β and γ were originally covered with a coat of mud plaster, with only the niches framed by rectangular bands of white gypsum.<a href="#fn5" class="footnote-ref" id="fnref5" role="doc-noteref"><sup>5</sup></a> This decorative pattern was customarily adopted in domestic architecture of Roman and Byzantine times in the Dakhla Oasis, as testified to by the examples found at several sites. After the enlargement of both rooms β and γ to the west (and the creation of B5 and A46), all walls and the vaulted roofs were completely whitewashed. Indeed, the layer of white gypsum plaster covering the walls was found to partially overlap the white frame around the niches in the north wall (south face) of room A46, which was also the north wall of β. Also the west wall of room α (and later room B6) testifies to the existence of a decorative pattern of niches framed with white gypsum bands predating the whitewash coating of the entire room.
</p>
<p id="p17">
It seems likely that the alterations involving the eastern halves of rooms B5 and A46 were carried out at the same time when both spaces were enlarged to the west, as the result of an overall, well-planned project. However, no conclusive archaeological evidence was found proving this hypothesis. Neither was it possible to determine their relative chronology, that is to say, to establish if the expansion of both rooms to the west pre- or post-dates the changes in the eastern half, which involved the construction of new vaulted roofs (as they were partly supported by a wall bonded with a feature that belonged to the sanctuary).
</p>
<p id="p18">
No evidence was found to associate the closing of the central doorway between the church and the gathering hall with any specific rearrangement carried out in the church complex. Unquestionably, however, the enlargement of rooms B5 and A46 to the west, with the overall whitewashing of their walls, represents a <em>terminus post quem</em> for the construction of the mud-brick plug. Indeed, the east and west inner faces of the doorway show partial but unambiguous traces of the same layer of white gypsum plaster, which was only later obscured by the bricked-in wall.
</p>
<p id="p19">
Furthermore, the sealing of the passageway certainly meant that the stepped podium, built against its east face, was no longer in use. The location of the podium itself suggests that its original function was to promote the ability of a single speaker to address people sitting in both rooms. The platform could be accessed only from the church, where the steps were placed, and, as said above, it was likely used by a celebrant to read the Scriptures and/or preach from a vantage point that allowed him to be easily seen and heard by everyone in either room. The fact that the people sitting in the gathering hall could participate, at least to some extent, in the liturgies celebrated in the church suggests the possible identification of room A46 as a hall for catechumens, who were allowed only partial participation to the Eucharist.<a href="#fn6" class="footnote-ref" id="fnref6" role="doc-noteref"><sup>6</sup></a> When the main opening between the two rooms was bricked in and the podium was sealed off, the need for easy accessibility (apart from the small doorway to the west) and interaction was no longer extant, pointing to a re-functionalization of hall A46. It was mentioned above that a higher degree of separation may have led to the construction of the mud-brick plug. Certainly, the public nature of the room does not seem to have ever been abandoned, as testified to by its unaltered dimensions and by the fact that the long <em>mastabas</em>, built along the north, south, and east walls for a relatively large number of people, were never dismantled. The presence of a kitchen in room B6,<a href="#fn7" class="footnote-ref" id="fnref7" role="doc-noteref"><sup>7</sup></a> immediately to the north of A46 and accessible from it through a doorway at the north wall’s west end, suggests the possible use of room A46, at least at this stage, as a hall for the eating of common meals. This interpretation is further supported by the discovery, across the street from the entrance into the church complex and fairly close to room A46, of another kitchen (B15) with several ovens, which undoubtedly served not the needs of a single family but rather those of a large group of people. Room A46 could have been used by such a community, whose nature remains unknown, as a refectory, for the consumption of the bread baked in the large kitchen and also the food prepared in room B6 and stored in pantry B9 (and above staircase B8). The use of room A46 as a refectory, rather than or in addition to liturgical purposes, might also explain the higher degree of separation needed from the church.<a href="#fn8" class="footnote-ref" id="fnref8" role="doc-noteref"><sup>8</sup></a> Even if of a different nature, a close association of the gathering hall with the church was maintained also at this stage through the western doorway. Indeed, there are numerous examples in Egypt, mostly (but not all) coming from monastic contexts,<a href="#fn9" class="footnote-ref" id="fnref9" role="doc-noteref"><sup>9</sup></a> of large refectories not only built in the proximity of churches, but also functionally related to them.<a href="#fn10" class="footnote-ref" id="fnref10" role="doc-noteref"><sup>10</sup></a>
</p>
<p id="p20">
An intriguing question concerns the nature of rooms β and γ before their alteration into rooms B5 and A46, i.e., if they functioned as a church before their expansion to the west and the addition of an apsidal sanctuary. In the first centuries of Christianity, the common worship and the liturgies were carried out in buildings of a domestic nature, with the basilica form being adopted in Christian architecture around the time of Constantine.<a href="#fn11" class="footnote-ref" id="fnref11" role="doc-noteref"><sup>11</sup></a> There is evidence for the existence of such <em>domus ecclesiae</em> in the ancient world, with the best known example coming from Dura Europos.<a href="#fn12" class="footnote-ref" id="fnref12" role="doc-noteref"><sup>12</sup></a> The possibility that religious ceremonies were carried out in rooms β and γ prior to their enlargement and/or the construction of the apse cannot be ruled out, but there are no available archaeological data to support it.
</p>
<p id="p21">
The architectural changes and additions that led to the creation of the church complex were substantial, deeply affecting the surrounding context. Indeed, the early structures that were incorporated into the complex lay within a densely constructed environment, as pointed to by consistent archaeological evidence. It was noticed, for example, how the irregular layout of the church in its south wall was likely dependent on space limitations to the south, possibly due to the existence of earlier buildings in the area. Therefore, the construction of the church and its adjoining rooms generated profound changes in the topography of the mound, especially around the complex. The archaeological investigation to the south and east of rooms B5 and A46 shed some light on these transformations, which must have involved also the unexcavated area to the north and west of the complex.
</p>
<p id="p22">
The floor identified in vaulted passageway B11 and the lower of the two levels (BF153) found in courtyard B13 (to the southeast of the church) seem to predate the construction of the church complex; indeed, they abut only the east half of room B5’s south wall, which was also the original south wall of room γ. Of the three floor levels found in street B12, running north–south to the east of the complex, the lowest (BF135) seems to be contemporary with the alterations carried out in the eastern halves of rooms B5 and A46. The two higher floors (BF134 and BF143) are to be associated, instead, with the buildings to the east of B12, in particular rooms B14–B15. The south segment (BF131) of B12’s east boundary predates the construction of the central partition (BF130 + BF128) of the same boundary. Indeed, BF130 abuts BF131 at the latter’s north end and is, in turn, abutted by BF128 (<a href="4_excavations-outside.html#plt-4.16" class="quarto-xref">Plate <span>4.16</span></a>). BF130 + BF128 are clearly shifted westwards compared to the street’s southeast and northeast walls (BF131 and BF129 respectively), which are instead aligned. The central partition was built to enclose the area of the ovens in room B15, which was partly built within the original north–south street B12. When this occurred, the route was modified with the creation of a slight turn eastwards, between the southwest corner of room B15 to the east and the church’s apse to the west. The substantial alterations that affected street B12, inside which both the apse and part of room B15 were built, caused the street to narrow down considerably to the east of the church. Indeed, the visible signs of weathering in the northeast corner of the apse’s outer wall, eight courses above ground level, are likely due to the passage and turning of carts and animals, for which the passage at that point might have been particularly difficult.
</p>
<p id="p23">
The west and south (west end) walls of room B15 (BF128 and BF130 respectively) postdate the addition of the apse to room B5.<a href="#fn13" class="footnote-ref" id="fnref13" role="doc-noteref"><sup>13</sup></a> Indeed, the foundation trenches of the two walls cut through a floor of street B12 in phase with the apse. When room B15 was built, another smaller space was added to the northeast, i.e., B14; as mentioned above, it once opened onto the former through a small doorway (now collapsed) and possibly served as a small storage room.
</p>
<p id="p24">
As mentioned above, room B15 once hosted ovens in its western half, which protruded into street B12 and gave access to it through a narrow opening set in the northwest corner. An intriguing fact is that the passage is precisely located across the street from the entrance into corridor B7 (and the church complex). One could suppose that room B15 (a bakery serving the needs of a large group of people) was built in relation to the church complex, particularly the anteroom/kitchen (B6) and the large gathering hall (A46). This is a fascinating possibility, supported, among other things, by the established relative chronology, but incontrovertible evidence is lacking.
</p>
<div class="page-columns page-full"><p id="p25">
The two higher floor levels of street B12 postdate the establishment of the small industrial installation in room B15, as they abut its western wall. In fact, the middle floor was laid out against the foundation courses of this wall and seems to be in phase with it. On top of the same level, substantial lenses of ash were found, particularly in the central part of the street and against the corner between the east wall of room A46 and the north wall of the apse; these units are likely to be correlated with the activities carried out in room B15 when the ovens were still in use. The highest floor of street B12 partially extended into room B15 through the narrow passageway located in the northwest corner of this room. Quite significantly, the floor obscured a stone with a socket placed on the ground at the west end of the north wall of B15. The socket likely held one of the hinges of a doorway once closing the passageway and blocked on the opposite side by a mud-brick jamb.<a href="#fn14" class="footnote-ref" id="fnref14" role="doc-noteref"><sup>14</sup></a> The analysis of the archaeological data suggests that when the latest floor of street B12 was laid out and extended into room B15, the passageway between the two spaces was no longer closed off. Indeed, no evidence for the placement of other doors was found. At a broader level, the changes that occurred in the northwest corner of B15 may be put in relation to the partial abandonment of the room, which took place in its latest phase. Indeed, the oven chambers were almost completely dismantled, leaving only traces of their mud-brick substructures, and room B14 was turned into a refuse dump. Substantial evidence points to the fact that the small industrial area including rooms B14 and B15 went out of use well before it was eclipsed under extensive wall collapses.
</p><div class="no-row-height column-margin column-container"><span class="margin-aside">p. 194</span></div></div>
<div id="plt-5.2" class="quarto-float quarto-figure quarto-figure-center anchored">
<figure class="quarto-float quarto-float-plt figure">
<div aria-describedby="plt-5.2-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<a href="assets/images/chapter-5/plt-5.2.jpg" class="lightbox" data-gallery="quarto-lightbox-gallery-2" title="Plate 5.2: Main (red) and secondary (green) axes of movement within the church complex."><img src="assets/images/chapter-5/plt-5.2.jpg" title="Plate 5.2: Main (red) and secondary (green) axes of movement within the church complex." class="img-fluid figure-img"></a>
</div>
<figcaption class="quarto-float-caption-bottom quarto-float-caption quarto-float-plt" id="plt-5.2-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Plate 5.2: Main (red) and secondary (green) axes of movement within the church complex.
</figcaption>
</figure>
</div>
</section>
<section id="sec-5.2" class="level2 page-columns page-full" data-number="5.2">
<h2 data-number="5.2" class="anchored" data-anchor-id="sec-5.2"><span class="header-section-number">5.2</span> Patterns of Movement Inside the Complex and Access from Outside</h2>
<p id="p26">
Movement within the church complex seems to have followed two main axes, roughly perpendicular to each other (indicated as red arrows in <a href="#plt-5.2" class="quarto-xref">Plate <span>5.2</span></a>). The first starts at the only entrance, located at the northeast end of the complex and once controlling the entire flow of people entering the building. It runs from east to west and leads from street B12, outside the building, into anteroom B6 via corridor B7, crossing the doorway between the two rooms. B6 is indeed the place with the highest degree of accessibility and where the strongest form of control and selection of access could be carried out. From there, a second axis of movement leads to the church at the south end of the complex. As said above, it is perpendicular to the former and begins at the entrance from anteroom B6 into gathering hall A46. It runs from north to south and crosses the open doorway in the southwest corner of A46, ending in room B5. This spatial arrangement was created to channel the flow of people from outside into the complex, leading them into the church, which was their most likely destination. The two axes cross four out of the seven rooms of the building, covering more than three quarters of the entire area. Furthermore, they once organized the access into the two largest and functionally most significant spaces of the complex, that is to say, rooms B5 and A46.
</p>
<p id="p27">
Access to the rooms at the northwest end of the church complex was, instead, regulated by minor axes, all starting from anteroom B6 and therefore secondary to the main east–west axis crossing corridor B7. One runs perpendicular to the latter, along the east wall of the anteroom, and crosses the doorway into staircase B8. From there, the staircase follows a line perpendicular to the preceding axis, leading to the roof of the complex and, in particular, to the small-scale industrial installations on the vaulted roof of kitchen B10. A third minor axis starts at the southwest corner of room B6, where the two main axes meet near the doorway into the gathering hall. It is oriented north–south and runs below the narrow vaulted passageway below the staircase, ending in pantry B9 at the northwest edge of the complex. This axis is, in fact, in line with the north–south one that leads from anteroom B6 to the church at the south end of the building, via room A46. Indeed, these two axes form one major pathway running from the north to the south end of the church complex, crossing three boundaries and four rooms plus the vaulted passageway below room B8. Therefore, it must have held a key role within the overall spatial configuration of the complex, shaping the movement of anyone entering the building.
</p>
<div class="page-columns page-full"><p id="p28">
A previous study discussed methods of spatial analysis in relation to the church complex at ʿAin el-Gedida. The goal was to shed light on the arrangement of particular configurations, by identifying ways in which human interaction can be affected by space.<a href="#fn15" class="footnote-ref" id="fnref15" role="doc-noteref"><sup>15</sup></a> The analysis provided some useful information on the degree of privacy or permeability of any given space, and on how access could be controlled to increase or limit the chances for encounters among people inside the church and adjacent rooms. However, it could not be used to estimate, to any degree of approximation, how many persons were in the church complex at any given time. The nature of some rooms is not clear beyond doubt, and other spaces, such as room B6, held multiple functions, making the identification of the people once accessing and using these rooms even more complex. Furthermore, the information that is available on the size of the settlement or the density of its population is currently too limited to provide any significant contribution. Nonetheless, the archaeological evidence that is available for some rooms of the complex allows us to gather some data of a quantitative nature. The church and the neighboring hall to the north have walls lined with benches that were built to host a considerable number of people. Room B5 bears well-preserved evidence of a <em>mastaba</em> built along the south wall for a length of ca. 9.8 m, including a small sector near the southeast corner where the bench is now missing. The <em>mastaba</em> continues along the west wall for about 2.2 m and another bench lines part of the north wall, between the northwest entrance and the central passageway, which was later bricked in, for about 4.3 m. The overall length of the <em>mastabas</em> within room B5 is ca. 16.3 m, pointing to a number of about forty people who might have been seated on the benches within the church at any given time.<a href="#fn16" class="footnote-ref" id="fnref16" role="doc-noteref"><sup>16</sup></a> To the north of B5, the gathering hall has benches built along the north wall for ca. 8.3 m and the east wall for ca. 3.9 m. The east <em>mastaba</em> is joined with another bench that lines the south wall of the hall for a length of about 1.9 m, giving a total length of ca. 14.1 m for the benches of room A46. Therefore, the hall was capable of seating at least thirty-five people at the same time.<a href="#fn17" class="footnote-ref" id="fnref17" role="doc-noteref"><sup>17</sup></a>
</p><div class="no-row-height column-margin column-container"><span class="margin-aside">p. 195</span></div></div>
<p id="p29">
Two features very similar to mud-brick <em>mastabas</em> were uncovered in anteroom B6, against the north and east wall.<a href="#fn18" class="footnote-ref" id="fnref18" role="doc-noteref"><sup>18</sup></a> Although the circular imprints found on top of them suggest their use as platforms for jars and other ceramic vessels, it is possible that they had been built as benches before the room functioned also as a kitchen. The feature lining the north wall is, at least in its preserved part, about 2 m long, while the remains of the platform along the east wall measure ca. 1.5 m in length. All together, they might have seated, if in fact they had been in use as benches, about eight/nine people.
</p>
<div class="page-columns page-full"><p id="p30">
The seating capacity of the church complex, with regard to the church and the gathering hall, that is to say, those spaces for which there is consistent archaeological evidence, was about seventy-five people, or more than eighty including the anteroom. This amount does not take into consideration those who were in charge of cooking in room B6, who would have also accessed the pantry (B9), the staircase (B8), and the vaulted roof of room B10. On the other hand, there is no substantial evidence on the identity of those who gathered and worshipped in the church complex. Therefore, it is not possible to be sure of a clear-cut distinction between the people who entered the complex just to attend a religious service and those who carried out more practical tasks. At any rate, considering not only the small-to-average size of the church and of the entire complex, but also the seemingly limited extent of the settlement, especially compared to nearby sites such as Kellis, this is a considerable number of people, testifying to the existence of a relatively large and well-established Christian community at ʿAin el-Gedida. Once again, it must be emphasized that these numbers give an approximate idea of how many people could have sat inside the church and the gathering hall (and possibly in the anteroom) at any given time, but do not provide an estimate of the maximum capacity of these two rooms. Indeed, it cannot be excluded that people, even a considerable number of them due to the relatively large size of both spaces, gathered for meetings and liturgies standing in the middle of rooms B5 and A46, while others were seated on the <em>mastabas</em>.
</p><div class="no-row-height column-margin column-container"><span class="margin-aside">p. 196</span></div></div>
<p id="p31">
Unfortunately, not only is our knowledge about the people living at ʿAin el-Gedida extremely limited, but very little is also known about the exact size and ancient topography of the settlement in which they lived. The church complex is centrally located on top of the main hill. It is surrounded by a compact layout of buildings of different shapes, sizes, and functions, and a network of streets and passageways that has been partially surveyed and excavated. The four other mounds that are part of the site, three to the south and one to the northeast of the main hill, bear archaeological evidence that is comparable, in many respects, to that of mound I. Due to its planned central setting, it seems likely that the church complex was meant to be accessed not only by the inhabitants of the main hill, but also those living on the other mounds. The mounds to the south, and possibly the one to the northeast, must have been connected by streets and/ or passageways leading to mound I and to the area of the church complex. Unfortunately, very little is known at present about the topography of mounds II-IV and nothing about the network of streets running on top of each mound and interconnecting them, to allow easy movement from one end to the other of the settlement.<a href="#fn19" class="footnote-ref" id="fnref19" role="doc-noteref"><sup>19</sup></a> Large sand dumps, from the excavations of the 1990s, lie to the south of mound I, between the main excavated area and mounds II-IV, which were the object of survey but not excavation. Therefore, a considerable effort would be required to clear the area from the sand and properly investigate it; however, such an endeavor would be well rewarded with a deeper knowledge of the overall village layout. Concerning mound V, located a few hundred meters to the northeast of the main hill, the archaeological data are even scantier. While it is reasonable to assume, on the basis of the available evidence, that mounds II-IV belonged in antiquity to the same site as mound I, this can be hypothesized with a much lower degree of certainty with regard to mound V. Indeed, the mud-brick features that are visible above ground are very meager and do not provide any clue about the nature of the buildings of which they were once part. Therefore, it is hard to carry out any sort of comparative analysis with the evidence on the other mounds, besides the establishment of obvious similarities in construction materials and techniques. Moreover, mound V lies at a considerably greater distance from the main hill than mounds II-IV, in an area that was and still is the object of heavy disturbances in modern times.
</p>
<p id="p32">
</p><div class="page-columns page-full"><p>The study of the topography of ʿAin el-Gedida, and of ancient patterns of movement within it, is further limited by the lack of any data about the surrounding roads and, in general, of how access to the site from outside was shaped in the fourth century CE. No evidence is available to support the identification of the modern unpaved track as the main road leading to ʿAin el-Gedida in antiquity. However, it is reasonable to assume that a path must have existed roughly following the same southeast direction, connecting the village of ʿAinn el-Gedida with the contemporary, and significantly larger, site of Kellis. The latter had at least three churches, one </p><div class="no-row-height column-margin column-container"><span class="margin-aside">p. 197</span></div></div>
<p>of which was of considerable size, which were built approximately in the same time frame as the church of ʿAin el-Gedida.<a href="#fn20" class="footnote-ref" id="fnref20" role="doc-noteref"><sup>20</sup></a> A large Christian community must therefore have existed at that site in the fourth century, with several places available for congregation, prayer, and the celebration of the Eucharist. It thus seems unlikely that Christians from Kellis would have needed to walk the (few) miles separating the two settlements to attend services at ʿAin el-Gedida with any regularity. This does not rule out the possibility that some of them could have done so, also due to the limited distance between the two sites; however, there is no evidence on this matter.</p>
<div id="plt-5.3" class="quarto-float quarto-figure quarto-figure-center anchored">
<figure class="quarto-float quarto-float-plt figure">
<div aria-describedby="plt-5.3-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<a href="assets/images/chapter-5/plt-5.3.jpg" class="lightbox" data-gallery="quarto-lightbox-gallery-3" title="Plate 5.3: Streets and passageways surveyed on mound I."><img src="assets/images/chapter-5/plt-5.3.jpg" title="Plate 5.3: Streets and passageways surveyed on mound I." class="img-fluid figure-img"></a>
</div>
<figcaption class="quarto-float-caption-bottom quarto-float-caption quarto-float-plt" id="plt-5.3-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Plate 5.3: Streets and passageways surveyed on mound I.
</figcaption>
</figure>
</div>
<p></p>
<p><pb n="198"></pb></p>
<p id="p33">
Apart from Kellis, no other known Late Antique settlements lie in close proximity to ʿAin el-Gedida.<a href="#fn21" class="footnote-ref" id="fnref21" role="doc-noteref"><sup>21</sup></a> The agricultural exploitation of the region, with the fields encroaching upon the archaeological remains and extending in all directions, makes any investigation of the area surrounding the site a very complex, if not impossible, task. At any rate, it cannot be excluded that the church complex was accessed also by people who did not live at ʿAin el-Gedida, but somewhere else in its vicinity.<a href="#fn22" class="footnote-ref" id="fnref22" role="doc-noteref"><sup>22</sup></a>
</p>
<p id="p34">
More information is available concerning the main hill, where surveys and excavations revealed some of the axes regulating the movement of people, animals, and things in antiquity (<a href="#plt-5.3" class="quarto-xref">Plate <span>5.3</span></a>). The data are incomplete, due to the fact that the mound has not yet been the object of full archaeological investigation. However, what is known allows identification, even if partial, of the network of streets and passageways built around the church complex. The study of this arrangement helped shed light on how people moved on mound I and approached the complex strategically located at its center.
</p>
<p id="p35">
In the north part of the hill, a street (a) runs from east to west and connects the two edges of the mound, although the eastern end is less clearly identifiable than the western and central segments. The street lines the south side of the very large rectangular building (unexcavated), which was earlier identified, on the basis of comparative evidence from other sites of the oasis, as a pigeon tower. A shorter lane (b) runs parallel to the west wall of the tower and perpendicular to the east–west oriented street. Its northern edge is connected with another street (c) running westward and perpendicular to the former. To the east of the pigeon-house is a north–south oriented street (d) that in its southern part crosses the east end of another road (e), running from northwest to southeast and partially investigated as space B16. The latter is parallel to the vaulted passageway (g) largely excavated as space B11 and lining the south side of the church (room B5). It is not clear if the passageway once continued further east as an open-air street, connecting the west and the east edges of the hill like street (a), although with a slightly different orientation. B16/e and B11/g are joined through a north–south oriented street (f) that is, in fact, space B12 running to the east of the church complex and leading to its entrance. The east end of vaulted passageway B11/g is connected with a street (i) partially investigated by the SCA in the 1990s. It runs perpendicular to B11/g in a southward direction and joins the area of the church complex with the southern end of the mound. Another narrow passageway (h), also excavated by the Egyptian mission and newly surveyed in 2006 (then named A8), runs north–south in the southwest part of mound I and connects the large kitchen found there (rooms A6–A7) with vaulted passageway B11/g and, through street B12/f, with the church complex.
</p>
<p id="p36">
The available archaeological evidence allows us to identify a major axis crossing mound I from north to south, consisting of streets (d), (f), and (i), which are in fact segments, although slightly shifted from each other, of the same north–south oriented street. This axis is matched by another street running from east to west and crossing the former near the southeast corner of the pigeon-house, located in the north half of the hill. All other paths surveyed or excavated on mound I, that is to say, (b), (c), (e), (g), and (h), are connected, directly or indirectly, with the main north–south or east–west axes. They once channeled the flow of people in and from all edges to the mound and through its dense topographical layout.
</p>
<p id="p37">
The plan of mound I shows a somewhat different orientation of buildings, streets, and passageways in the south area of the hill from that exhibited in the central and northern parts. Indeed, the horizontal (i.e., east–west) axes in the south are shifted more to the southeast than the streets further north, likely testifying to the different phases of architectural development that occurred on the main hill in antiquity. Nonetheless, all streets identified there appear as part of a carefully designed and unified network, whose spatial focus is on the center of mound I and, more specifically, on the area of the church complex. The overall spatial arrangement of mound I and in particular of its streets, passageways, and alleys must have been quite effective, although not necessarily created for that purpose, in bringing people from all corners of the mound—and outside it—toward the center of the hill and, quite significantly, in channeling their flow into the area of the church complex. Once again, the archaeological evidence for mound I is incomplete and does not allow categorical conclusions. However, what is known—and it is not a little—undoubtedly points to the spatial centrality of the ecclesiastical complex, which, although built in a densely constructed environment, was granted a rather high degree of accessibility by an efficient network of streets.
</p>
</section>
<section id="ʿain-el-gedida-and-early-christian-architecture-in-egypt" class="level2 page-columns page-full" data-number="5.3">
<h2 data-number="5.3" class="anchored" data-anchor-id="ʿain-el-gedida-and-early-christian-architecture-in-egypt"><span class="header-section-number">5.3</span> ʿAin el-Gedida and Early Christian Architecture in Egypt</h2>
<p id="p38">
The current resurgence of interest in the study of Egyptian Christianity has generated a process of intensive investigation of Egyptian churches and monasteries, which offer a significant contribution to the study of Christian architecture in Late Antiquity. No substantial information has been retrieved thus far on pre-Constantinian churches in Egypt. However, early fourth-century Christianity is becoming much better known thanks to the data provided by the growing archaeological evidence. In particular, the investigations carried out in the Dakhla Oasis have brought to light a wealth of data about Early Christian architecture.<a href="#fn23" class="footnote-ref" id="fnref23" role="doc-noteref"><sup>23</sup></a> Fourth-century churches excavated at Kellis, ʿAin el-Gedida, and other sites witness to the early circulation of architectural forms and types, such as the basilica, not only in the more accessible and populated regions of the Delta and the Nile Valley, but also in the more remote areas of the Western Desert.
</p>
<section id="sec-5.3.1" class="level3 page-columns page-full" data-number="5.3.1">
<h3 data-number="5.3.1" class="anchored" data-anchor-id="sec-5.3.1"><span class="header-section-number">5.3.1</span> Small East Church at Kellis/Ismant el-Kharab</h3>
<p id="p39">
Within the Dakhla Oasis, the Small East Church at Kellis stands out as the closest typological parallel to the church complex of ʿAin el-Gedida, in particular the set of rooms consisting of the church (B5) and the gathering hall (A46). The Small East Church was partially cleared in 1981-82, with the investigation focusing especially on the area of the sanctuary.<a href="#fn24" class="footnote-ref" id="fnref24" role="doc-noteref"><sup>24</sup></a> Gillian Bowen conducted extensive excavations of the church in 2000 and published the building in 2003 (<a href="#plt-5.4" class="quarto-xref">Plate <span>5.4</span></a>).<a href="#fn25" class="footnote-ref" id="fnref25" role="doc-noteref"><sup>25</sup></a>
</p>
<div id="plt-5.4" class="quarto-float quarto-figure quarto-figure-center anchored">
<figure class="quarto-float quarto-float-plt figure">
<div aria-describedby="plt-5.4-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<a href="assets/images/chapter-5/plt-5.4.jpg" class="lightbox" data-gallery="quarto-lightbox-gallery-4" title="Plate 5.4: Plan of the Small East Church at Kellis (after @bowen_2003a [pp. 154])."><img src="assets/images/chapter-5/plt-5.4.jpg" title="Plate 5.4: Plan of the Small East Church at Kellis (after @bowen_2003a [pp. 154])." class="img-fluid figure-img"></a>
</div>
<figcaption class="quarto-float-caption-bottom quarto-float-caption quarto-float-plt" id="plt-5.4-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Plate 5.4: Plan of the Small East Church at Kellis (after <span class="citation" data-cites="bowen_2003a">Bowen <a href="references.html#ref-bowen_2003a" role="doc-biblioref">2003a: 154</a></span>).
</figcaption>
</figure>
</div>
<p id="p40">
The Small East Church of Kellis and the church of ʿAin el-Gedida have similar dimensions; they share the same length (ca. 9.5 m) from east to west, but the Small East Church is two meters wider (ca. 10.5 m) than rooms B5 and A46 at ʿAin el-Gedida. Almost identical is the layout of the two churches, with a large rectangular space to the north opening to the south into an apsidal room. Both buildings were built using mud bricks, which were the main construction material in the oasis. All walls were plastered in mud and then covered with a coating of white gypsum. Consistent traces of polychrome painted decoration were found inside the apse of the Small East Church, including two columns on the back wall and panels with geometric forms and wavy lines. An engaged semi-column was also built within the wall of the apse, a little off the main axis of the building. The church of ʿAin el-Gedida is empty of any painted ornamentation, with the exception of scanty fragments of a fresco identified above the niche in the north wall.<a href="#fn26" class="footnote-ref" id="fnref26" role="doc-noteref"><sup>26</sup></a>
</p>
<p id="p41">
At ʿAin el-Gedida, both room B5 and room A46 were once covered by a barrel-vaulted roof. At Kellis, evidence for a barrel-vaulted ceiling was found only for the meeting hall to the north (room 2), while room 1 had, at least before its conversion into a church, a flat roof.<a href="#fn27" class="footnote-ref" id="fnref27" role="doc-noteref"><sup>27</sup></a> The Small East Church had two windows letting light in, one set in the west wall of the meeting hall, high above floor level, and the other placed at the north end of room 1’s west wall, close to the west doorway into room 2. No traces of windows or small holes, opening onto the exterior of the complex, were found in either the church or the gathering hall at ʿAin el-Gedida. The west walls of both rooms are preserved to a considerable height, but do not carry any sign of having been pierced by windows; the same applies to their other walls.<a href="#fn28" class="footnote-ref" id="fnref28" role="doc-noteref"><sup>28</sup></a>
</p>
<p id="p42">
In the Small East Church, access into the complex was only via a doorway (ca. 1.10 m wide) located at the south end of room 2’s west wall; no door led directly into the church (room 1) from the outside. The church of ʿAin el-Gedida reflects a similar arrangement, with the entrance located at the west end of room A46’s north wall and no direct access from the exterior into room B5. Another significant parallel, in relation to the organization of space, is the existence, in both buildings, of two doorways connecting the northern hall with the nave and the sanctuary to the south, i.e., a smaller one to the west and a wider passage in the middle.<a href="#fn29" class="footnote-ref" id="fnref29" role="doc-noteref"><sup>29</sup></a> A mud-brick podium was built against the east side of the central doorway at ʿAin el-Gedida, visible from both rooms. No such feature was found in the Small East Church. However, at ʿAin el-Gedida the central opening was bricked in at a later stage, leaving the west doorway as the only entrance into the church from the gathering hall.
</p>
<p id="p43">
Room A46 at ʿAin el-Gedida has <em>mastabas</em> lining the north, east, and part of the south walls, while the comparable meeting hall (room 2) of Kellis does not show evidence of benches. On the other hand, <em>mastabas</em> coated in white gypsum are built in the Kellis church proper (room 1), to the south of room 2, running along the north, west, and, except for a small gap, south walls. Before the construction of the apse and its side rooms against the east wall of the church, the south bench turned north along the east wall for about 2.85 m; however, this sector of the <em>mastaba</em> was concealed following the architectural alterations that were carried out in the room. According to Bowen, room 1 might have been used, before the addition of the sanctuary, as a meeting hall. The presence of benches along the four walls of the room, undoubtedly part of the first construction episode, suggests that this space could host a large group of people gathering in it at the same time. Nevertheless, it is not clear if this room, as well as room 2, belonged, before the more substantial alterations carried on them, to a building with civic or religious functions.<a href="#fn30" class="footnote-ref" id="fnref30" role="doc-noteref"><sup>30</sup></a> Similarly to the Small East Church, room B5 at ʿAin el-Gedida has benches built against the north, west, and south walls. Due to the heavily disturbed context of the area in front of the sanctuary, it is not possible to say if benches once lined the east wall, too. Nonetheless, the overall evidence for the architectural development of the complex suggests that the <em>mastabas</em> in room B5 were in phase with the apse and the overall use of this space as a church.
</p>
<p id="p44">
The absence of <em>mastabas</em> in room 2 at Kellis is remarkable, considering not only its similarities with room A46 at ʿAin el-Gedida, but also its large dimensions and the function as a congregational hall associated with it.<a href="#fn31" class="footnote-ref" id="fnref31" role="doc-noteref"><sup>31</sup></a> Another difference between rooms 2 and A46 is the absence of any niche/cupboard in the former, while several niches pierce the walls of the latter: one is set into the west half of the south wall, two within the north wall, and a fourth niche in the west wall, near the doorway into anteroom B6. Although lacking in room 2, niches are a common feature of buildings at Kellis and throughout the oasis. Indeed, the nave of the Small East Church, to the south of the meeting hall, has four cupboards built into its walls; two are set along the north wall, symmetrically placed to the sides of the central doorway, one at the center of the west wall, and a fourth at the west end of the south wall. Within the same room, two other cupboards pierce the north and south sides of the inner wall of the apse. To the north of the sanctuary, a small side room has a rectangular shelf built within the north wall. The situation at ʿAin el-Gedida is almost reversed; unlike room 1 at Kellis (but also the gathering hall, room A46, at ʿAin el-Gedida), only one niche is built inside the main nave (room B5), toward the east end of the north wall, in addition to the L-shaped <em>pastophorion</em> associated with the east apse.
</p>
<p id="p45">
Both the church of ʿAin el-Gedida (including rooms B5 and A46) and the Small East Church at Kellis (rooms 1–2) are the result of substantial alterations that were carried out on earlier buildings, in order to convert them into Christian places of cult that conformed to certain specified requirements.<a href="#fn32" class="footnote-ref" id="fnref32" role="doc-noteref"><sup>32</sup></a> What must be emphasized here is that there are no data allowing us to identify, in a conclusive manner, the function performed by the buildings that were involved in such transformations. With regard to Kellis, the excavator believes, as mentioned above, that both rooms 1 and 2 served as gathering halls for relatively large groups of people.<a href="#fn33" class="footnote-ref" id="fnref33" role="doc-noteref"><sup>33</sup></a> A large doorway, set in the middle of the north wall of room 2, was completely sealed off with a mud-brick plug, which remained un-plastered. The door once opened onto a passageway oriented east–west and, through another doorway located further north, into the area of the Large East Church. In room 1, the northwest doorway was opened, which made it necessary to remove part of the north bench, and the central doorway was substantially narrowed. Also, the window set in the west wall was sealed off and the <em>mastaba</em> lining the south wall was extended to fill an original gap. Yet the most significant new feature was the tripartite sanctuary constructed against the east wall. A semicircular apse was built in a central location, partially cut into the wall, and its inner wall was, as mentioned above, painted with frescoes. To the north and south of the apse two small side-chambers were built.<a href="#fn34" class="footnote-ref" id="fnref34" role="doc-noteref"><sup>34</sup></a> The floor of the sanctuary was raised above the level of the main nave and the central apse was made accessible through a set of two steps. In the south-side chamber, the raised floor allowed the preservation of the bench originally set in the southeast corner, with the remaining gap filled with debris and brought to the level of the <em>mastaba</em>. A domed roof covered the central apse, while the two side rooms had barrel-vault ceilings. A tripartite architectural frame, consisting of three arches and two engaged pilasters, one at each side of the apse, outlined the entire sanctuary.
</p>
<div class="page-columns page-full"><p></p><div class="no-row-height column-margin column-container"><span class="margin-aside">p. 203</span></div></div>
<p id="p46">
Few similarities and substantial differences exist between the apse of the Small East Church and that of the church of ʿAin el-Gedida. Both of them are later additions to pre-existing structures, substantially raised above floor level. Also, the focus is, in both cases, on a semi-circular apse, centrally placed and framed by engaged half-pilasters (half columns in the case of ʿAin el-Gedida). However, the conch of room B5 at ʿAin el-Gedida is not flanked by two side chambers accessible from the nave, as in the Small East Church. Instead, it is directly connected with a small L-shaped <em>pastophorion</em> built to the south, which cannot be reached from the main nave. Another significant difference is that, while the sanctuary of the Small East Church was built within the perimeter of the original structure, the apse and the <em>pastophorion</em> of the church of ʿAin el-Gedida were added against the outer face of the nave’s east wall. Thus, the construction of the sanctuary did not entail a reduction of the space occupied by the nave, to the contrary of what occurred at Kellis. In general, there is no substantial evidence to argue that, in Christian architecture, the addition of an external apse represents a later development than the construction of a sanctuary within the original perimeter of an earlier structure.<a href="#fn35" class="footnote-ref" id="fnref35" role="doc-noteref"><sup>35</sup></a>
</p>
<p id="p47">
Notwithstanding the above-mentioned differences, it is undeniable that the similarities between the Small East Church of Kellis and the church of ʿAin el-Gedida are quite striking. Even the interpretation of rooms 1 and 2, proposed by Bowen in relation to the Small East Church, closely matches the analysis of the available evidence from ʿAin el-Gedida. In particular, both room 2 at Kellis and room A46 at ʿAin el-Gedida have been identified as meeting halls, used either for the consumption of meals by the community of the faithful or as rooms for catechumens, who had only partial access to the Eucharist, which was celebrated in the adjoining church.<a href="#fn36" class="footnote-ref" id="fnref36" role="doc-noteref"><sup>36</sup></a>
</p>
<p id="p48">
The numismatic evidence collected from both churches grants additional parallels. A few third-century specimens were found in the church of ʿAin el-Gedida (five) and in the Small East Church at Kellis (four), but the dating of most coins suggests that the two churches were in use in the first half of the fourth century. The chronological range provided by the numismatic analysis is supported by the ceramic evidence coming from both buildings, with the dating of the pottery from the Small East Church only slightly earlier than the span assigned to the evidence from ʿAin el-Gedida (i.e., third–fourth century vs. fourth–early fifth century). In fact, substantial differences cannot be established, with regard to forms and materials, between the ceramic evidence of the late fourth and that of the early fifth century in Dakhla. Therefore, the chronological ranges proposed for the church of ʿAin el-Gedida and the Small East Church at Kellis cannot be considered as significantly dissimilar.
</p>
<p id="p49">
The Small East Church of Kellis has been interpreted by Bowen as a fitting example of <em>domus ecclesiae</em>, comparable to the earlier Syrian <em>domus</em> of Dura Europos.<a href="#fn37" class="footnote-ref" id="fnref37" role="doc-noteref"><sup>37</sup></a> The archaeological evidence clearly points to the construction of the church as the result of substantial alterations carried out on an older building, in order to suit the needs of a Christian community. The building in its later phase shared, as emphasized by Bowen, strong similarities with the basilica-type church, such as the existence of a nave oriented to the east and the presence of a raised sanctuary defined by a semi-circular apse and side rooms. The identification of the Small East Church of Kellis as a <em>domus ecclesiae</em> is certainly compelling, as it pertains to the re-use and transformation of an earlier structure into the “house of the church”.<a href="#fn38" class="footnote-ref" id="fnref38" role="doc-noteref"><sup>38</sup></a> It must be remarked that the conversion of the early building into a basilical-plan church considerably altered the layout of the former, especially in room 1, which, as just mentioned above, came to resemble a standard type of religious architecture. However, it is not known, with regard to the Small East Church, if the original structure had actually been in use as a Christian <em>domus ecclesiae</em>. In fact, nothing prevents the early building from having been a place of cult even before these alterations, nor compels it to have been. The issue related to the use of the term <em>domus ecclesiae</em> also involves the church of ʿAin el-Gedida, due to its construction history and the similarities with the Small East Church of Kellis. The former also developed into a basilica-type church from pre-existing structures, which might well, but need not, have served as a Christian place of cult before their enlargement to the west and the addition of an apse along the east side of room B5. However, as mentioned above, the available archaeological evidence is not conclusive on this issue.
</p>
</section>
<section id="kharga" class="level3" data-number="5.3.2">
<h3 data-number="5.3.2" class="anchored" data-anchor-id="kharga"><span class="header-section-number">5.3.2</span> Kharga</h3>
<p id="p50">
Apart from the Small East Church at Kellis, the archaeological evidence for early fourth-century churches in the Dakhla Oasis does not provide for close parallels with the church of ʿAin el-Gedida or the whole architectural complex. However, it testifies, quite significantly, to the existence of thriving Christian communities in this relatively isolated region of the Western Desert since an early time.
</p>
<p id="p51">
A wealth of information on Early Christian buildings, both from monastic and non-monastic contexts, comes from the nearby Kharga Oasis, which shares several historical ties with Dakhla.<a href="#fn39" class="footnote-ref" id="fnref39" role="doc-noteref"><sup>39</sup></a> Churches and church complexes, dated to the fourth and fifth century CE, were excavated or recorded at numerous sites in Kharga, although not all of them have been extensively published.<a href="#fn40" class="footnote-ref" id="fnref40" role="doc-noteref"><sup>40</sup></a>
</p>
<p id="p52">
The extensive remains of the town of Douch (ancient Kysis), located in the south half of the oasis and investigated by a French mission (IFAO), include archaeological evidence of Christian places of cult.<a href="#fn41" class="footnote-ref" id="fnref41" role="doc-noteref"><sup>41</sup></a> Alterations were carried out in antiquity within the temple of Isis and Serapis, which may have been connected with its possible reuse as a church. To the east of the temple, another church was found, which seems to have been built within an earlier set of buildings (<a href="#plt-5.5" class="quarto-xref">Plate <span>5.5</span></a>). The church, whose religious function was lost during its last occupational phase (when it was turned into a series of stables), is dated to the fourth century, a chronological framework shared by the church of ʿAin el-Gedida. The building, which is divided into a nave and two side aisles by two rows of columns, has a return aisle along the northwest side and ends, to the southeast, in a long, rectangular <em>presbyterium</em>.<a href="#fn42" class="footnote-ref" id="fnref42" role="doc-noteref"><sup>42</sup></a> A small doorway by the northwest corner provided direct access into the church, which was originally connected to a set of additional rooms to the northeast and southwest.<a href="#fn43" class="footnote-ref" id="fnref43" role="doc-noteref"><sup>43</sup></a> The overall layout of the church of Douch does not share significant similarities with the ecclesiastical complex of ʿAin el-Gedida. It is noteworthy, however, that both churches, which are roughly contemporary, were built not as isolated structures, but as part of larger, multifunctional complexes, although with their rooms differently arranged. Furthermore, there is substantial evidence, in both instances, pointing to the re-use of earlier structures, possibly of a domestic nature, for the construction of the church and the set of interconnected rooms.
</p>
<div id="plt-5.5" class="quarto-float quarto-figure quarto-figure-center anchored">
<figure class="quarto-float quarto-float-plt figure">
<div aria-describedby="plt-5.5-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<a href="assets/images/chapter-5/plt-5.5.jpg" class="lightbox" data-gallery="quarto-lightbox-gallery-5" title="Plate 5.5: Plan of the church of Douch (after @redde_2004 [pp. 83])."><img src="assets/images/chapter-5/plt-5.5.jpg" title="Plate 5.5: Plan of the church of Douch (after @redde_2004 [pp. 83])." class="img-fluid figure-img"></a>
</div>
<figcaption class="quarto-float-caption-bottom quarto-float-caption quarto-float-plt" id="plt-5.5-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Plate 5.5: Plan of the church of Douch (after <span class="citation" data-cites="redde_2004">Reddé <a href="references.html#ref-redde_2004" role="doc-biblioref">2004: 83</a></span>).
</figcaption>
</figure>
</div>
<p id="p53">
The fourth-century church of Shams ed-Din, located a few kilometers from Douch and considered one of the earliest known examples of Christian architecture in Egypt, is typologically closer to the church of Douch than to the one at ʿAin el-Gedida (<a href="#plt-5.6" class="quarto-xref">Plate <span>5.6</span></a>).<a href="#fn44" class="footnote-ref" id="fnref44" role="doc-noteref"><sup>44</sup></a> Indeed, it shows the elongated rectangular sanctuary and the partition into central nave and side aisle, plus the west return aisle that is a typical feature of several Upper Egyptian churches.<a href="#fn45" class="footnote-ref" id="fnref45" role="doc-noteref"><sup>45</sup></a> Like the ecclesiastical complex from Douch and that of ʿAin el-Gedida, the church of Shams ed-Din opens onto a set of interconnected rooms.<a href="#fn46" class="footnote-ref" id="fnref46" role="doc-noteref"><sup>46</sup></a> Several features of this complex are also attested to at ʿAin el-Gedida, including <em>mastabas</em> along the north, west, and south walls of the church and a nearby staircase leading to an upper floor or a roof. Also, a mud-brick stepped podium can still be noticed in both churches, although the one of Shams ed-Din, located against the northeast column, did not have to satisfy the same needs for visibility from two different rooms as at ʿAin el-Gedida.
</p>
<div id="plt-5.6" class="quarto-float quarto-figure quarto-figure-center anchored">
<figure class="quarto-float quarto-float-plt figure">
<div aria-describedby="plt-5.6-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<a href="assets/images/chapter-5/plt-5.6.jpg" class="lightbox" data-gallery="quarto-lightbox-gallery-6" title="Plate 5.6: Plan of the church of Shams ed-Din (after @bonnet_2004 [pp. 84])."><img src="assets/images/chapter-5/plt-5.6.jpg" title="Plate 5.6: Plan of the church of Shams ed-Din (after @bonnet_2004 [pp. 84])." class="img-fluid figure-img"></a>
</div>
<figcaption class="quarto-float-caption-bottom quarto-float-caption quarto-float-plt" id="plt-5.6-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Plate 5.6: Plan of the church of Shams ed-Din (after <span class="citation" data-cites="bonnet_2004">Bonnet <a href="references.html#ref-bonnet_2004" role="doc-biblioref">2004: 84</a></span>).
</figcaption>
</figure>
</div>
<p id="p54">
Further remains of fourth–fifth century churches and ecclesiastical complexes have been identified in the Kharga Oasis. Particularly impressive are the monastic settlements of Deir Mustafa Kashef and of ʿAin Zaaf, located in the proximity of the necropolis of Bagawat.<a href="#fn47" class="footnote-ref" id="fnref47" role="doc-noteref"><sup>47</sup></a> The complex at Deir Mustafa Kashef, located on the side of a hill, consists of a church and several rooms arranged on different floors and surrounded by high and thick walls. In the plain to the west is another complex of rooms (sometimes referred to as Deir Bagawat), of which one was identified as a chapel, adjacent to which is a large waiting room for visitors. At ʿAin Zaaf, one kilometer to the north of Deir Mustafa Kashef, is another possibly monastic complex, located at the foot of a hill dotted with tombs. The two complexes of Deir Mustafa Kashef and that of ʿAin Zaaf show layouts that are substantially larger and more developed than the church complex of ʿAin el-Gedida, with a host of small and large rooms, some of which are lined with <em>mastabas</em> (partly reminding one of gathering hall A46 at ʿAin el-Gedida) and all interconnected. Their construction did not occur as the result of a single episode; indeed, the archaeological evidence testifies to a multi-phased construction history for all of them.<a href="#fn48" class="footnote-ref" id="fnref48" role="doc-noteref"><sup>48</sup></a> The remains of partition walls built inside the church of ʿAin Zaaf, originally of a basilical, tripartite plan, show that, at least in its latest occupational phase, the building was subdivided into a cluster of smaller rooms and presumably lost its original function.<a href="#fn49" class="footnote-ref" id="fnref49" role="doc-noteref"><sup>49</sup></a>
</p>
</section>
<section id="beyond-the-great-oasis" class="level3" data-number="5.3.3">
<h3 data-number="5.3.3" class="anchored" data-anchor-id="beyond-the-great-oasis"><span class="header-section-number">5.3.3</span> Beyond the <em>Great Oasis</em></h3>
<p id="p55">
The evidence for churches consisting of one nave without side aisles, such as room B5 at ʿAin el-Gedida, is not very abundant, but far from nonexistent; it spans the fourth to at least the seventh century CE. Several examples of churches with one nave attest to the fact that the church of ʿAin el-Gedida and the Small East Church at Kellis are not a type restricted to the geographical context of the Dakhla Oasis. It is important to note that most of the evidence for one-nave basilical churches is from a later date than the two examples from Dakhla; nonetheless, they are worthy of consideration, as they attest to the popularity of the type also in later centuries. Churches consisting of one nave and oriented to the east were found at the monastic site of Kellia, in Lower Egypt. One structure, built within hermitage no. 16 in the area of Qusur al-Izayla, has a rectangular sanctuary connected with a side room to the south. The church is dated to the seventh century.<a href="#fn50" class="footnote-ref" id="fnref50" role="doc-noteref"><sup>50</sup></a> Still at Qusur al-Izayla, the chapel from hermitage no. 31 consists of one nave divided into two bays and oriented to the west.<a href="#fn51" class="footnote-ref" id="fnref51" role="doc-noteref"><sup>51</sup></a> A semicircular apse is built at the west end, while a side room was once accessible through a doorway set into the east wall.
</p>
<p id="p56">
Two other churches consisting of one nave were found in the area of Antinoopolis. One, dated to the sixth century, is located in the west part of the city’s ruins and shows a more developed type than the church of ʿAin el-Gedida, including a narthex along the west side and a choir near the sanctuary, which consists of a central square apse flanked by two side rooms.<a href="#fn52" class="footnote-ref" id="fnref52" role="doc-noteref"><sup>52</sup></a> The other one-nave church (or, in fact, its fifth-century construction phase) lies at the center of the village of Deir Abu Hinnis, south of Antinoopolis.<a href="#fn53" class="footnote-ref" id="fnref53" role="doc-noteref"><sup>53</sup></a> A semi-circular apse is placed at the east end of the building, with two elongated rectangular rooms to the north and south of it. A narthex is at the opposite (western) end of the church.<a href="#fn54" class="footnote-ref" id="fnref54" role="doc-noteref"><sup>54</sup></a>
</p>
<p id="p57">
Additional evidence comes from the presumably monastic site (earlier a Roman military fortress) of Manqabad, to the northwest of Asyut.<a href="#fn55" class="footnote-ref" id="fnref55" role="doc-noteref"><sup>55</sup></a> A sixth-century church, located in the western part of the site, consists of one nave, with a choir and a semi-circular apse at the east end.<a href="#fn56" class="footnote-ref" id="fnref56" role="doc-noteref"><sup>56</sup></a> Like the above-mentioned churches, it bears a basic typological resemblance to the church of ʿAin el-Gedida, although their layout is less simple, including more architectural features such as (in some cases) a narthex and a choir.
</p>
<p id="p58">
The seminal volume by P. Grossmann on Christian architecture in Egypt lists other examples of churches with a simple basilica plan, consisting of one nave and a semi-circular apse placed at the east end, sometimes with side rooms to the north and south of the sanctuary. Some were found in funerary contexts, such as tomb-chapel 42 from the necropolis of Oxyrhynchos and the chapel from a cemetery in Antaeopolis.<a href="#fn57" class="footnote-ref" id="fnref57" role="doc-noteref"><sup>57</sup></a> Others are located within monastic settlements, such as construction phase I of the Lower Church at Deir Abu Fana.<a href="#fn58" class="footnote-ref" id="fnref58" role="doc-noteref"><sup>58</sup></a> Church A at Deir el-Naqlun, in the Fayyum, is divided into a nave and two side aisles by two rows of columns, with a return aisle along the west side. However, signs of an early construction phase point to a smaller and simpler layout, with a single, undivided nave and eastern apse.<a href="#fn59" class="footnote-ref" id="fnref59" role="doc-noteref"><sup>59</sup></a>
</p>
<p id="p59">
The available evidence for one-nave churches, with semi-circular or square sanctuaries, testifies to the adoption of this type since an early stage and its use beyond the fourth century. This is not to suggest that the type with a tripartite body and, especially in Upper Egypt, a western return aisle was chronologically later than the one-nave model. Examples such as the fourth-century Large East Church at Kellis prevent us from making such an assertion. Indeed, the predominant type in Early Christian architecture, in Egypt as well as other regions of the ancient world, was the basilica with a central nave and two (or four) side aisles.<a href="#fn60" class="footnote-ref" id="fnref60" role="doc-noteref"><sup>60</sup></a>
</p>
<p id="p60">
With regard to the arrangement of large rectangular halls adjoining churches (as shown at ʿAin el-Gedida and Kellis), there are several other examples, within Egypt and especially in monastic contexts, that reflect a similar spatial organization, even though they do not share other close similarities with the complex of ʿAin el-Gedida. Two of the best known examples are the church complexes of the White and Red monasteries at Sohag, in Middle Egypt.<a href="#fn61" class="footnote-ref" id="fnref61" role="doc-noteref"><sup>61</sup></a> Their dimensions are considerably wider and their layouts more elaborate when compared with the church of ʿAin el-Gedida, but they all include a rectangular hall, extending along almost the entire length of each church and interconnected with it.<a href="#fn62" class="footnote-ref" id="fnref62" role="doc-noteref"><sup>62</sup></a> Other examples of large rectangular halls that are interconnected with churches can be seen at the Monastery of Saint Antony near the Red Sea and in several monastic settlements of the Wadi Natrun, in Lower Egypt: among them are the monasteries of Deir Anba Bishoi, Deir el-Suryani, and Deir el-Baramus.<a href="#fn63" class="footnote-ref" id="fnref63" role="doc-noteref"><sup>63</sup></a> At these sites, the rectangular halls, identified as refectories, were built much later than the fourth–fifth century, but, according to C. C. Walters, since they are part of the oldest nucleus of each monastery, it is not unreasonable to assume that they are adaptations of earlier structures, similar in shape and function.<a href="#fn64" class="footnote-ref" id="fnref64" role="doc-noteref"><sup>64</sup></a> If this is true, the gathering hall (room A46) at ʿAin el-Gedida, directly opening onto the church (room B5), would represent a significant fourth-century precedent of this church–rectangular hall arrangement. This is, however, far from being indisputable evidence for the identification of the church complex of ʿAin el-Gedida (and of the settlement in which it is nestled) as monastic either in origin or in character.<a href="#fn65" class="footnote-ref" id="fnref65" role="doc-noteref"><sup>65</sup></a>
</p>
<p id="p61">
A smaller church, whose layout is very similar to that of rooms B5 and A46 at ʿAin el-Gedida, was found in recent years at the site of Bakchias, in the Fayyum.<a href="#fn66" class="footnote-ref" id="fnref66" role="doc-noteref"><sup>66</sup></a> It is built of mud bricks and consists of a one-nave church oriented to the east, ending with an inner apse.<a href="#fn67" class="footnote-ref" id="fnref67" role="doc-noteref"><sup>67</sup></a> To the north is another rectangular space, possibly of the same length. According to its excavators, it seems to have once opened onto the church, although the available evidence is not conclusive.<a href="#fn68" class="footnote-ref" id="fnref68" role="doc-noteref"><sup>68</sup></a> Further investigation in the area surrounding the church might reveal if the two spaces formed an isolated building or were part of a larger complex, as at ʿAin el-Gedida.
</p>
</section>
</section>
<section id="notes" class="level2" data-number="5.4">
<h2 data-number="5.4" class="anchored" data-anchor-id="notes"><span class="header-section-number">5.4</span> Notes</h2>
<div id="refs" class="references csl-bib-body hanging-indent" data-entry-spacing="0" role="list" style="display: none">
<div id="ref-alston_2002" class="csl-entry" role="listitem">
Alston, Richard. 2002. <em>The City in Roman and Byzantine Egypt</em>. London; New York: Routledge.
</div>
<div id="ref-aravecchia_2001" class="csl-entry" role="listitem">
Aravecchia, Nicola. 2001. <span>“Hermitages and Spatial Analysis: <span>Use</span> of Space at the Kellia.”</span> In McNally 2001: 29–38.
</div>
<div id="ref-aravecchia_2009a" class="csl-entry" role="listitem">
———. 2009b. <span>“<span>Ain <span class="nocase">el-Gedida</span></span> 2009 Study Season: <span>Field</span> <span>Director</span>’s <span>Report</span>.”</span> <a href="http://www.amheida.org/inc/pdf/Report2009AG.pdf">http://www.amheida.org/inc/pdf/Report2009AG.pdf</a>.
</div>
<div id="ref-aravecchia_2009b" class="csl-entry" role="listitem">
———. 2009a. <span>“Christians of the <span>Western</span> <span>Desert</span> in <span>Late</span> <span>Antiquity</span>: The Fourth-Century Church Complex of ʿ<span>Ain <span class="nocase">el-Gedida</span></span>, <span>Upper</span> <span>Egypt</span>.”</span> Ph.D. Dissertation, University of Minnesota. <a href="https://www.proquest.com/docview/304956263?sourcetype=Dissertations%20&%20Theses">https://www.proquest.com/docview/304956263?sourcetype=Dissertations%20&%20Theses</a>.
</div>
<div id="ref-bagnall_rathbone_2004" class="csl-entry" role="listitem">
Bagnall, Roger S., and Dominic W. Rathbone, eds. 2004. <em>Egypt from <span>Alexander</span> to the <span>Early Christians</span>. <span>An Archaeological</span> and <span>Historical Guide</span></em>. Los Angeles: The J. Paul Getty Museum.
</div>
<div id="ref-baldovin_2006" class="csl-entry" role="listitem">
Baldovin, John F., S.J. 2006. <span>“The Empire Baptized.”</span> In Wainwright and Westerfield Tucker 2006: 77–130.
</div>
<div id="ref-bonnet_2004" class="csl-entry" role="listitem">
Bonnet, Charles. 2004. <span>“L’église <span>du village de</span> Douch.”</span> In Reddé 2004: 75–86.
</div>
<div id="ref-bowen_2003a" class="csl-entry" role="listitem">
Bowen, Gillian E. 2003a. <span>“The <span>Small</span> <span>East</span> <span>Church</span> at <span>Ismant</span> <span class="nocase">el-Kharab</span>.”</span> In Bowen and Hope 2003: 153–65.
</div>
<div id="ref-bowen_2003b" class="csl-entry" role="listitem">
———. 2003b. <span>“Some <span>Observations</span> on <span>Christian</span> <span>Burial</span> <span>Practices</span> at <span>Kellis</span>.”</span> In Bowen and Hope 2003: 167–82.
</div>
<div id="ref-brookshedstrom_2017" class="csl-entry" role="listitem">
Brooks Hedstrom, Darlene L. 2017. <em>The <span>Monastic Landscape</span> of <span>Late Antique Egypt</span>: <span>An Archaeological Reconstruction</span></em>. Cambridge: Cambridge University Press.
</div>
<div id="ref-butler_1900" class="csl-entry" role="listitem">
Butler, Howard C. 1900. <span>“Report of an American Archaeological Expedition in Syria, 1899–1900.”</span> <em>American Journal of Archaeology</em> 4 (4): 415–40.
</div>
<div id="ref-butler_littmann_1905" class="csl-entry" role="listitem">
Butler, Howard C., and Enno Littmann. 1905. <span>“Preliminary <span>Report</span> of the <span>Princeton University Expedition</span> to <span>Syria</span>.”</span> <em>American Journal of Archaeology</em> 9 (4): 389–410.
</div>
<div id="ref-buzi_2007a" class="csl-entry" role="listitem">
Buzi, Paola. 2007a. <span>“Bakchias tardo-antica: la chiesa del <span>Kom Sud</span>.”</span> <em>Aegyptus</em> 87: 377–91.
</div>
<div id="ref-buzi_2007b" class="csl-entry" role="listitem">
———. 2007b. <span>“Nuove considerazioni sul complesso ecclesiastico del <span>Kom Sud</span>.”</span> <em>Richerche di Egittologia e di Antichità Copte</em> 9: 93–103.
</div>
<div id="ref-buzi_2014" class="csl-entry" role="listitem">
———. 2014. <span>“Il settore cristiano.”</span> In Giorgi and Buzi 2014: 179–211.
</div>
<div id="ref-capuani_2002" class="csl-entry" role="listitem">
Capuani, Massimo. 2002. <em>Christian Egypt. <span>Coptic</span> Art and Monuments Through Two Millennia</em>. Collegeville, Minnesota: The Liturgical Press.
</div>
<div id="ref-clarke_2007" class="csl-entry" role="listitem">
Clarke, David L. C. 2007. <span>“Viewing the Liturgy: A Space Syntax Study of Changing Visibility and Accessibility in the Development of the Byzantine Church in Jordan.”</span> <em>World Archaeology</em> 39 (1): 84–104.
</div>
<div id="ref-godlewski_2005" class="csl-entry" role="listitem">
Godlewski, Włodzimierz. 2005. <span>“Excavating the Ancient Monastery at Naqlun.”</span> In Gabra 2005: 155–71.
</div>
<div id="ref-grahame_2000" class="csl-entry" role="listitem">
Grahame, Mark. 2000. <em>Reading Space: <span>Social</span> Interaction and Identity in the Houses of Roman Pompeii. <span>A</span> Syntactical Approach to the Analysis and Interpretation of Built Space</em>. Oxford: Archaeopress.
</div>
<div id="ref-grossmann_1991a" class="csl-entry" role="listitem">
Grossmann, Peter. 1991d. <span>“Dayr Al-<span>Baramus</span>: <span>Architecture</span>.”</span> In Atiya 1991: 791–93.
</div>
<div id="ref-grossmann_1991b" class="csl-entry" role="listitem">
———. 1991e. <span>“Dayr Al-<span>Suryan</span>: <span>Architecture</span>.”</span> In Atiya 1991: 879–81.
</div>
<div id="ref-grossmann_1991c" class="csl-entry" role="listitem">
———. 1991c. <span>“Dayr <span>Anba Bishoi</span>: <span>Buildings</span>.”</span> In Atiya 1991: 740.
</div>
<div id="ref-grossmann_1991d" class="csl-entry" role="listitem">
———. 1991a. <span>“Dayr <span>Anba Shinudah</span>: <span>Architecture</span>.”</span> In Atiya 1991: 766–69.
</div>
<div id="ref-grossmann_1991e" class="csl-entry" role="listitem">
———. 1991b. <span>“Pbow: <span>Archaeology</span>.”</span> In Atiya 1991: 232–36.
</div>
<div id="ref-grossmann_1995" class="csl-entry" role="listitem">
———. 1995. <span>“L’architecture de <span>l’Église</span> de <span>St.-Antoine</span>.”</span> In Moorsel 1995: 1–19.
</div>
<div id="ref-grossmann_1998" class="csl-entry" role="listitem">
———. 1998. <span>“Koptische Architektur.”</span> In Krause 1998: 209–67.
</div>
<div id="ref-grossmann_2002a" class="csl-entry" role="listitem">
———. 2002a. <em>Christliche Architektur in Ägypten</em>. Leiden; Boston; Köln: Brill.
</div>
<div id="ref-grossmann_2002b" class="csl-entry" role="listitem">
———. 2002b. <span>“Typological Considerations on the Large East Church at Ismant El-Kharab.”</span> In Hope and Bowen 2002: 153–56.
</div>
<div id="ref-grossmann_2007" class="csl-entry" role="listitem">
———. 2007. <span>“Early <span>Christian Architecture</span> in <span>Egypt</span> and <span class="nocase">its</span> <span>Relationship</span> to the <span>Architecture</span> of the <span>Byzantine World</span>.”</span> In Bagnall 2007: 103–36.
</div>
<div id="ref-hamilton_1956" class="csl-entry" role="listitem">
Hamilton, John A. 1956. <em>Byzantine architecture and decoration</em>. London: Batsford.
</div>
<div id="ref-hillier_hanson_1984" class="csl-entry" role="listitem">
Hillier, B., and J. Hanson. 1984. <em>The <span>Social Logic</span> of <span>Space</span></em>. Cambridge: Cambridge University Press.
</div>
<div id="ref-innemee_1999" class="csl-entry" role="listitem">
Innemée, Karel C. 1999. <span>“The <span>Identity</span> of <span>Deir</span> <span class="nocase">el-<span>Baramus</span></span>.”</span> <em>Egyptian Archaeology</em> 15: 41–43.
</div>
<div id="ref-johnson_1999" class="csl-entry" role="listitem">
Johnson, Maxwell E. 1999. <em>The Rites of Christian Initiation: <span>Their</span> Evolution and Interpretation</em>. Collegeville, MN: Liturgical Press.
</div>
<div id="ref-johnson_2006" class="csl-entry" role="listitem">
———. 2006. <span>“The <span>Apostolic Tradition</span>.”</span> In Wainwright and Westerfield Tucker 2006: 32–75.
</div>
<div id="ref-kasser_etal_1983" class="csl-entry" role="listitem">
Kasser, Rodolphe et al. 1983. <em>Survey archéologique des Kellia (Basse-Égypte): Rapport de la campagne 1981</em>. 2 vols. Louvain-Leuven: Éditions Peeters.
</div>
<div id="ref-knudstad_frey_1999" class="csl-entry" role="listitem">
Knudstad, J. E., and R. A. Frey. 1999. <span>“Kellis, the <span>Architectural</span> <span>Survey</span> of the <span>Romano</span>-<span>Byzantine</span> <span>Town</span> at <span>Ismant</span> <span class="nocase">el-Kharab</span>.”</span> In Churcher and Mills 1999: 189–214.
</div>
<div id="ref-krautheimer_1986" class="csl-entry" role="listitem">
Krautheimer, Richard. 1986. <em>Early Christian and Byzantine Architecture</em>. New Haven: Yale.
</div>
<div id="ref-laurence_1994" class="csl-entry" role="listitem">
Laurence, Ray. 1994. <em>Roman Pompeii: <span>Space</span> and Society</em>. New York: Routledge.
</div>
<div id="ref-laurence_wallacehadrill_1997" class="csl-entry" role="listitem">
Laurence, Ray, and Andrew Wallace-Hadrill, eds. 1997. <em>Domestic <span>Space</span> in the <span>Roman World</span>: <span>Pompeii</span> and <span>Beyond</span></em>. Portsmouth, RI: Journal of Roman Archaeology.
</div>
<div id="ref-macdonald_1986" class="csl-entry" role="listitem">
MacDonald, David. 1986. <span>“Dating the Fall of Dura-Europos.”</span> <em>Historia</em> 35: 45–68.
</div>
<div id="ref-mcintosh_2003" class="csl-entry" role="listitem">
McIntosh, Gillian E. 2003. <span>“Re-Thinking the Roman Domus: How Architects and Orators Construct Self, Space, and Language.”</span> Ph.D. Dissertation, Ohio State University, Dept. of Greek <span>and</span> Latin.
</div>
<div id="ref-mills_1982" class="csl-entry" role="listitem">
Mills, Anthony J. 1982. <span>“The <span>Dakhleh Oasis Project</span>. <span>Report</span> on the <span>Fourth Season</span> of <span>Survey</span>: <span>October</span> 1981–<span>January</span> 1982.”</span> <em>Journal of the Society for the Study of Egyptian Antiquities</em> 12: 93–101.
</div>
<div id="ref-mitchell_1981" class="csl-entry" role="listitem">
Mitchell, Lionel L. 1981. <span>“The Development of Catechesis in the Third and Fourth Century: <span>From</span> Hippolytus to Augustine.”</span> In Westerhoff and Edwards 1981: 49–78.
</div>
<div id="ref-monneretdevillard_1928" class="csl-entry" role="listitem">
Monneret de Villard, Ugo. 1928. <em>Les églises du Monastère des Syriens au Wadi en Natrun</em>. Milan: Tipografia Pontificia Arcivescovile San Giuseppe.
</div>
<div id="ref-muellerwiener_1963" class="csl-entry" role="listitem">
Müller-Wiener, Wolfgang. 1963. <span>“Christliche Monumente im Gebiet von Hibis (el-Kharga).”</span> <em>Mitteilungen des Deutschen Archäologischen Instituts, Abteilung Kairo</em> 19: 121–40.
</div>
<div id="ref-redde_2004" class="csl-entry" role="listitem">
Reddé, Michel, ed. 2004. <em>Kysis: Fouilles de l’Ifao à Douch, Oasis de Kharga, 1985–1990</em>. Cairo: Institut Français d’Archéologie Orientale.
</div>
<div id="ref-stalley_1999" class="csl-entry" role="listitem">
Stalley, Roger. 1999. <em>Early Medieval Architecture</em>. Oxford; New York: Oxford University Press.
</div>
<div id="ref-tassinari_buzi_2007" class="csl-entry" role="listitem">
Tassinari, Cristian, and Paola Buzi. 2007. <span>“Bakchias XV. Rapporto preliminare della campagna di scavo del novembre 2006.”</span> <em>Ricerche di Egittologia e di Antichità Copte</em> 9: 21–39.
</div>
<div id="ref-vivian_2008" class="csl-entry" role="listitem">
Vivian, Cassandra. 2008. <em>The <span>Western</span> <span>Desert</span> of <span>Egypt</span>: <span>An</span> <span>Explorer</span>’s <span>Handbook</span></em>. Cairo: The American University in Cairo Press.
</div>
<div id="ref-wagner_1987" class="csl-entry" role="listitem">
Wagner, Guy. 1987. <em>Les <span>Oasis</span> d’Égypte à l’époque grecque, romaine et byzantine d’après les documents grecs</em>. Cairo: Institut Français d’Archéologie Orientale.
</div>
<div id="ref-walters_1974" class="csl-entry" role="listitem">
Walters, C. C. 1974. <em>Monastic Archaeology in Egypt</em>. Warminster: Aris & Phillips.
</div>
</div>
</section>
<section id="footnotes" class="footnotes footnotes-end-of-document" role="doc-endnotes">
<hr>
<ol>
<li id="fn1"><p>For the location of FSUs discussed in this section, see <a href="3_mound-1.html#plt-3.45" class="quarto-xref">Plate <span>3.45</span></a> (α), <a href="3_mound-1.html#plt-3.39" class="quarto-xref">Plate <span>3.39</span></a> (β), Pl. <a href="3_mound-1.html#plt-3.5" class="quarto-xref">Plate <span>3.5</span></a> (γ), and Pl. <a href="4_excavations-outside.html#plt-4.2" class="quarto-xref">Plate <span>4.2</span></a> (B10).<a href="#fnref1" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn2"><p>Based on room β’s parallels with room γ to the south, it is likely that room β’s east wall was incorporated within feature AF71 (the east wall of room A46).<a href="#fnref2" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn3"><p>See <a href="3_mound-1.html#plt-3.56" class="quarto-xref">Plate <span>3.56</span></a>.<a href="#fnref3" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn4"><p>The facing itself was very difficult to recognize. It could be identified and roughly measured only by looking at the very complex situation on the tops of the walls located along the west end of rooms B5 and A46.<a href="#fnref4" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn5"><p>And, at least in some cases, with also their inner sides painted in white.<a href="#fnref5" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn6"><p>For an introduction to the ancient sources and modern scholarship on this topic, cf. among others, <span class="citation" data-cites="mitchell_1981">Mitchell <a href="references.html#ref-mitchell_1981" role="doc-biblioref">1981</a></span>; <span class="citation" data-cites="johnson_1999">Johnson <a href="references.html#ref-johnson_1999" role="doc-biblioref">1999</a></span> (particularly 50–60 and 116–21 with regard to Egypt) and <span class="citation" data-cites="johnson_2006">Johnson <a href="references.html#ref-johnson_2006" role="doc-biblioref">2006</a></span>; <span class="citation" data-cites="baldovin_2006">Baldovin, John F., S.J. <a href="references.html#ref-baldovin_2006" role="doc-biblioref">2006</a></span>.<a href="#fnref6" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn7"><p>Possibly not the original function of this space, which served primarily as an anteroom.<a href="#fnref7" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn8"><p>See <span class="citation" data-cites="bowen_2003a">Bowen <a href="references.html#ref-bowen_2003a" role="doc-biblioref">2003a: 162</a></span> for comparative evidence from the similarly laid out Small East Church at Kellis.<a href="#fnref8" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn9"><p>For example at the Kellia in Lower Egypt: see <span class="citation" data-cites="grossmann_2002a">Grossmann <a href="references.html#ref-grossmann_2002a" role="doc-biblioref">2002a</a>, plan 108</span>.<a href="#fnref9" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn10"><p>No traces of tables, which are common features in refectories at several other sites, were detected at ʿAin el-Gedida.<a href="#fnref10" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn11"><p><span class="citation" data-cites="krautheimer_1986">Krautheimer <a href="references.html#ref-krautheimer_1986" role="doc-biblioref">1986: 43</a></span>.<a href="#fnref11" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn12"><p><span class="citation" data-cites="macdonald_1986">MacDonald <a href="references.html#ref-macdonald_1986" role="doc-biblioref">1986: 45–68</a></span>; <span class="citation" data-cites="bowen_2003a">Bowen <a href="references.html#ref-bowen_2003a" role="doc-biblioref">2003a: 162–64</a></span>.<a href="#fnref12" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn13"><p>For a discussion of rooms B14–B15, see <a href="4_excavations-outside.html#sec-4.5" class="quarto-xref"><span>Section 4.5</span></a> above.<a href="#fnref13" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn14"><p>Whose remains were identified against the north end of the west wall of room B15.<a href="#fnref14" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn15"><p>See <span class="citation" data-cites="aravecchia_2009b">Aravecchia <a href="references.html#ref-aravecchia_2009b" role="doc-biblioref">2009a</a>, particularly chapter 5</span>, which includes relevant bibliography, including, among others, <span class="citation" data-cites="hillier_hanson_1984">Hillier and Hanson <a href="references.html#ref-hillier_hanson_1984" role="doc-biblioref">1984</a></span>. References on space syntax analysis applied to Roman architecture are <span class="citation" data-cites="laurence_1994">Laurence <a href="references.html#ref-laurence_1994" role="doc-biblioref">1994</a>, especially chs. 5–8</span>; <span class="citation" data-cites="laurence_wallacehadrill_1997">Laurence and Wallace-Hadrill <a href="references.html#ref-laurence_wallacehadrill_1997" role="doc-biblioref">1997</a></span>, which includes a relevant essay by M. Grahame; <span class="citation" data-cites="grahame_2000">Grahame <a href="references.html#ref-grahame_2000" role="doc-biblioref">2000</a></span>; <span class="citation" data-cites="mcintosh_2003">McIntosh <a href="references.html#ref-mcintosh_2003" role="doc-biblioref">2003</a></span>, a Ph.D. dissertation on the Roman <em>domus</em>. On space syntax analysis and Christian archaeology, see <span class="citation" data-cites="aravecchia_2001">Aravecchia <a href="references.html#ref-aravecchia_2001" role="doc-biblioref">2001</a>, with a focus on Egyptian monastic cells</span> and <span class="citation" data-cites="clarke_2007">Clarke <a href="references.html#ref-clarke_2007" role="doc-biblioref">2007</a></span>. Access analysis was applied to houses from Roman Egypt by <span class="citation" data-cites="alston_2002">Alston <a href="references.html#ref-alston_2002" role="doc-biblioref">2002</a></span> (see especially chapter 3).<a href="#fnref15" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn16"><p>Once again, not counting the people standing. The calculation is based on an average of 40 cm per person.<a href="#fnref16" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn17"><p>And, undoubtedly, of hosting several more besides those who were seated. The rough parity of the numbers provided by the church (room B5) and the gathering hall (room A46) raises the question of male/female as a possible organizing principle.<a href="#fnref17" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn18"><p>The latter in very poor condition.<a href="#fnref18" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn19"><p>Except for part of a street, running northwest–southeast, that was detected on mound II during a 2009 survey.<a href="#fnref19" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn20"><p>See <a href="1_introduction.html#sec-1.2" class="quarto-xref"><span>Section 1.2</span></a> in this volume for a discussion of the evidence for fourth-century Christianity at Kellis.<a href="#fnref20" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn21"><p>Some uninvestigated ruins were detected to the south of ʿAin el-Gedida, toward the main modern road leading to Mut, the oasis capital (D.O.P. survey number: 31/405-N3-2).<a href="#fnref21" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn22"><p>However, as mentioned above, there is no evidence pointing to the existence and precise location of ancient roads or tracks that once led to mound I from outside the settlement.<a href="#fnref22" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn23"><p>On early Christianity in Dakhla, see <a href="1_introduction.html#sec-1.2" class="quarto-xref"><span>Section 1.2</span></a> of this volume.<a href="#fnref23" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn24"><p><span class="citation" data-cites="mills_1982">Mills <a href="references.html#ref-mills_1982" role="doc-biblioref">1982: 99–100</a></span>; <span class="citation" data-cites="knudstad_frey_1999">Knudstad and Frey <a href="references.html#ref-knudstad_frey_1999" role="doc-biblioref">1999: 205</a></span>.<a href="#fnref24" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn25"><p>See <span class="citation" data-cites="bowen_2003a">Bowen <a href="references.html#ref-bowen_2003a" role="doc-biblioref">2003a</a></span>.<a href="#fnref25" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn26"><p>Some graffiti were identified in both churches but do not seem to have been part of any original decorative program.<a href="#fnref26" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn27"><p><span class="citation" data-cites="bowen_2003a">Bowen <a href="references.html#ref-bowen_2003a" role="doc-biblioref">2003a: 158</a></span>.<a href="#fnref27" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn28"><p>It is not to be excluded, however, that openings for light and air might have been set at a very high level.<a href="#fnref28" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn29"><p>Although at Kellis the west doorway was built only at a later stage, when the building was converted into a church.<a href="#fnref29" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn30"><p><span class="citation" data-cites="bowen_2003a">Bowen <a href="references.html#ref-bowen_2003a" role="doc-biblioref">2003a: 158</a></span> suggests that the hall was part of a complex that did not belong to a domestic context, but rather might have held a civic function. C. Hope believes (same essay, footnote 3) that the room was spatially focused on the middle of the south side. Following Hope’s observation, it is worth remarking how the addition of the sanctuary against the east wall entailed the shifting of the focal point of the room by 90°.<a href="#fnref30" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn31"><p><span class="citation" data-cites="bowen_2003a">Bowen <a href="references.html#ref-bowen_2003a" role="doc-biblioref">2003a: 162</a></span>.<a href="#fnref31" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn32"><p>The archaeological evidence available for ʿAin el-Gedida, concerning in particular the development of the church complex, was discussed in the previous chapter.<a href="#fnref32" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn33"><p><span class="citation" data-cites="bowen_2003a">Bowen <a href="references.html#ref-bowen_2003a" role="doc-biblioref">2003a: 158</a></span>.<a href="#fnref33" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn34"><p>Which were, used, at least in their final stage, as storage rooms: see <span class="citation" data-cites="bowen_2003a">Bowen <a href="references.html#ref-bowen_2003a" role="doc-biblioref">2003a: 161</a></span>.<a href="#fnref34" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn35"><p>See <span class="citation" data-cites="hamilton_1956">Hamilton <a href="references.html#ref-hamilton_1956" role="doc-biblioref">1956: 151</a></span>, concerning Early Christian churches from Umm el-Jimal, in modern Jordan. The church of ʿAin el-Gedida is a fitting example of an early fourth-century building with an external apsidal sanctuary. On the excavations carried out at Umm el-Jimal, see <span class="citation" data-cites="butler_1900">Butler <a href="references.html#ref-butler_1900" role="doc-biblioref">1900</a></span> and <span class="citation" data-cites="butler_littmann_1905">Butler and Littmann <a href="references.html#ref-butler_littmann_1905" role="doc-biblioref">1905</a></span>.<a href="#fnref35" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn36"><p><span class="citation" data-cites="bowen_2003a">Bowen <a href="references.html#ref-bowen_2003a" role="doc-biblioref">2003a: 162</a></span>. On catechumens, and their physical separation from the rest of the congregation during the liturgy, see <span class="citation" data-cites="stalley_1999">Stalley <a href="references.html#ref-stalley_1999" role="doc-biblioref">1999: 23–24</a></span>. Cf. also p. 191, footnote 6 in this volume.<a href="#fnref36" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn37"><p><span class="citation" data-cites="bowen_2003a">Bowen <a href="references.html#ref-bowen_2003a" role="doc-biblioref">2003a: 162–64</a></span>.<a href="#fnref37" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn38"><p><span class="citation" data-cites="bowen_2003a">Bowen <a href="references.html#ref-bowen_2003a" role="doc-biblioref">2003a</a></span> [pp. 158; 161–62].<a href="#fnref38" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn39"><p>For an introduction to the evidence of Early Christian churches in Kharga, see <span class="citation" data-cites="bagnall_rathbone_2004">Bagnall and Rathbone <a href="references.html#ref-bagnall_rathbone_2004" role="doc-biblioref">2004: 251–61</a></span>.<a href="#fnref39" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn40"><p>The publication, by Nicholas Warner, of substantial new information on Early Christianity in North Kharga, including previously unpublished churches, is forthcoming.<a href="#fnref40" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn41"><p><span class="citation" data-cites="bonnet_2004">Bonnet <a href="references.html#ref-bonnet_2004" role="doc-biblioref">2004: 75–86</a></span>; <span class="citation" data-cites="redde_2004">Reddé <a href="references.html#ref-redde_2004" role="doc-biblioref">2004: 56–68</a></span>.<a href="#fnref41" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn42"><p><span class="citation" data-cites="bonnet_2004">Bonnet <a href="references.html#ref-bonnet_2004" role="doc-biblioref">2004: 82–83</a></span>.<a href="#fnref42" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn43"><p>A second doorway led into the church via a small anteroom and a larger hall to the southwest.<a href="#fnref43" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn44"><p><span class="citation" data-cites="wagner_1987">Wagner <a href="references.html#ref-wagner_1987" role="doc-biblioref">1987: 182–83</a></span>; <span class="citation" data-cites="bonnet_2004">Bonnet <a href="references.html#ref-bonnet_2004" role="doc-biblioref">2004: 84</a> (fig. 69)</span>.<a href="#fnref44" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn45"><p><span class="citation" data-cites="grossmann_2007">Grossmann <a href="references.html#ref-grossmann_2007" role="doc-biblioref">2007: 107</a></span>.<a href="#fnref45" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn46"><p>The rooms line the south wall of the church and follow a less-articulated arrangement than at ʿAin el-Gedida.<a href="#fnref46" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn47"><p>See <span class="citation" data-cites="muellerwiener_1963">Müller-Wiener <a href="references.html#ref-muellerwiener_1963" role="doc-biblioref">1963</a></span>; <span class="citation" data-cites="vivian_2008">Vivian <a href="references.html#ref-vivian_2008" role="doc-biblioref">2008: 141</a></span>; <span class="citation" data-cites="bagnall_rathbone_2004">Bagnall and Rathbone <a href="references.html#ref-bagnall_rathbone_2004" role="doc-biblioref">2004: 253–54</a></span>.<a href="#fnref47" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn48"><p>As reflected also at ʿAin el-Gedida.<a href="#fnref48" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn49"><p>A rearrangement of space, involving the loss of its original religious function, occurred also in the church of Douch/Kysis discussed above.<a href="#fnref49" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn50"><p>Kasser et al. <span class="citation" data-cites="kasser_etal_1983"><a href="references.html#ref-kasser_etal_1983" role="doc-biblioref">1983: 128 ff.; pl. 16</a></span>; <span class="citation" data-cites="capuani_2002">Capuani <a href="references.html#ref-capuani_2002" role="doc-biblioref">2002: 80</a></span>.<a href="#fnref50" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn51"><p>Kasser et al. <span class="citation" data-cites="kasser_etal_1983"><a href="references.html#ref-kasser_etal_1983" role="doc-biblioref">1983: 417; pl. 29</a></span>. See also Grossmann <span class="citation" data-cites="grossmann_2002a"><a href="references.html#ref-grossmann_2002a" role="doc-biblioref">2002a: 265; 283; plan 117</a></span>.<a href="#fnref51" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn52"><p><span class="citation" data-cites="grossmann_2002a">Grossmann <a href="references.html#ref-grossmann_2002a" role="doc-biblioref">2002a: 101; plan 138</a></span>; <span class="citation" data-cites="capuani_2002">Capuani <a href="references.html#ref-capuani_2002" role="doc-biblioref">2002: 177–79</a></span>.<a href="#fnref52" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn53"><p><span class="citation" data-cites="bagnall_rathbone_2004">Bagnall and Rathbone <a href="references.html#ref-bagnall_rathbone_2004" role="doc-biblioref">2004: 171–72</a></span>; <span class="citation" data-cites="capuani_2002">Capuani <a href="references.html#ref-capuani_2002" role="doc-biblioref">2002: 179</a></span>.<a href="#fnref53" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn54"><p>Another example is the church of the Monastery of St. Antony in the Eastern desert (<span class="citation" data-cites="grossmann_1995">Grossmann <a href="references.html#ref-grossmann_1995" role="doc-biblioref">1995</a></span>).<a href="#fnref54" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn55"><p><span class="citation" data-cites="grossmann_2002a">Grossmann <a href="references.html#ref-grossmann_2002a" role="doc-biblioref">2002a: 270–71</a></span>.<a href="#fnref55" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn56"><p>Grossmann <span class="citation" data-cites="grossmann_2002a"><a href="references.html#ref-grossmann_2002a" role="doc-biblioref">2002a: plan 145</a></span>. <span class="citation" data-cites="capuani_2002">Capuani <a href="references.html#ref-capuani_2002" role="doc-biblioref">2002: 198</a></span> mentions three churches as consisting of one nave only.<a href="#fnref56" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn57"><p>Grossmann <span class="citation" data-cites="grossmann_2002a"><a href="references.html#ref-grossmann_2002a" role="doc-biblioref">2002a: 317; 338; plans 61–62</a></span>.<a href="#fnref57" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn58"><p>Grossmann <span class="citation" data-cites="grossmann_2002a"><a href="references.html#ref-grossmann_2002a" role="doc-biblioref">2002a: 62; plan 134</a></span>.<a href="#fnref58" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn59"><p>Grossmann <span class="citation" data-cites="grossmann_2002a"><a href="references.html#ref-grossmann_2002a" role="doc-biblioref">2002a: plan 131</a></span>. On the excavations at Deir el-Naqlun, see <span class="citation" data-cites="godlewski_2005">Godlewski <a href="references.html#ref-godlewski_2005" role="doc-biblioref">2005</a></span>.<a href="#fnref59" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn60"><p><span class="citation" data-cites="grossmann_2007">Grossmann <a href="references.html#ref-grossmann_2007" role="doc-biblioref">2007: 104</a></span>.<a href="#fnref60" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn61"><p>See <span class="citation" data-cites="grossmann_1991d">Grossmann <a href="references.html#ref-grossmann_1991d" role="doc-biblioref">1991a</a></span>, <span class="citation" data-cites="grossmann_1991e">Grossmann <a href="references.html#ref-grossmann_1991e" role="doc-biblioref">1991b</a></span>; <span class="citation" data-cites="grossmann_1998">Grossmann <a href="references.html#ref-grossmann_1998" role="doc-biblioref">1998</a></span>.<a href="#fnref61" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn62"><p>The hall is located along the outer face of the south wall in the churches of the White and Red monasteries, while it opens onto the church of ʿAin el-Gedida from the north.<a href="#fnref62" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn63"><p>See <span class="citation" data-cites="grossmann_1995">Grossmann <a href="references.html#ref-grossmann_1995" role="doc-biblioref">1995</a></span> (St. Antony); <span class="citation" data-cites="grossmann_1991c">Grossmann <a href="references.html#ref-grossmann_1991c" role="doc-biblioref">1991c</a></span> (Deir Anba Bishoi); <span class="citation" data-cites="innemee_1999">Innemée <a href="references.html#ref-innemee_1999" role="doc-biblioref">1999</a></span> and <span class="citation" data-cites="grossmann_1991a">Grossmann <a href="references.html#ref-grossmann_1991a" role="doc-biblioref">1991d</a></span> (Deir el-Baramus); <span class="citation" data-cites="monneretdevillard_1928">Monneret de Villard <a href="references.html#ref-monneretdevillard_1928" role="doc-biblioref">1928</a></span> and <span class="citation" data-cites="grossmann_1991b">Grossmann <a href="references.html#ref-grossmann_1991b" role="doc-biblioref">1991e</a></span> (Deir el-Suryani).<a href="#fnref63" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn64"><p>Although the evidence for this is not conclusive: see <span class="citation" data-cites="walters_1974">Walters <a href="references.html#ref-walters_1974" role="doc-biblioref">1974: 39, 99–102</a></span>.<a href="#fnref64" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn65"><p>According to Walters, evidence for monastic architecture in general points to a progressive loss of importance, in monastic environments, of the habit of communal eating, leading to less strict arrangements: see <span class="citation" data-cites="walters_1974">Walters <a href="references.html#ref-walters_1974" role="doc-biblioref">1974: 102</a></span>. On Egypt’s monastic landscape during Late Antiquity, cf. <span class="citation" data-cites="brookshedstrom_2017">Brooks Hedstrom <a href="references.html#ref-brookshedstrom_2017" role="doc-biblioref">2017</a></span>.<a href="#fnref65" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn66"><p>The church was excavated by a team of the University of Bologna directed by Sergio Pernigotti: see <span class="citation" data-cites="buzi_2007a">Buzi <a href="references.html#ref-buzi_2007a" role="doc-biblioref">2007a</a></span>, <span class="citation" data-cites="buzi_2007b">Buzi <a href="references.html#ref-buzi_2007b" role="doc-biblioref">2007b</a></span> and <span class="citation" data-cites="tassinari_buzi_2007">Tassinari and Buzi <a href="references.html#ref-tassinari_buzi_2007" role="doc-biblioref">2007</a></span>. On Christian Bakchias, see <span class="citation" data-cites="buzi_2014">Buzi <a href="references.html#ref-buzi_2014" role="doc-biblioref">2014</a></span>.<a href="#fnref66" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn67"><p>Not built against the outer face of the east wall, as at ʿAin el-Gedida.<a href="#fnref67" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn68"><p><span class="citation" data-cites="tassinari_buzi_2007">Tassinari and Buzi <a href="references.html#ref-tassinari_buzi_2007" role="doc-biblioref">2007: 38–39</a></span>.<a href="#fnref68" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
</ol>
</section>
</main> <!-- /main -->
<script id="quarto-html-after-body" type="application/javascript">
window.document.addEventListener("DOMContentLoaded", function (event) {
const icon = "";
const anchorJS = new window.AnchorJS();
anchorJS.options = {
placement: 'right',
icon: icon
};
anchorJS.add('.anchored');
const isCodeAnnotation = (el) => {
for (const clz of el.classList) {
if (clz.startsWith('code-annotation-')) {
return true;
}
}
return false;
}
const onCopySuccess = function(e) {
// button target
const button = e.trigger;
// don't keep focus
button.blur();
// flash "checked"
button.classList.add('code-copy-button-checked');
var currentTitle = button.getAttribute("title");
button.setAttribute("title", "Copied!");
let tooltip;
if (window.bootstrap) {
button.setAttribute("data-bs-toggle", "tooltip");
button.setAttribute("data-bs-placement", "left");
button.setAttribute("data-bs-title", "Copied!");
tooltip = new bootstrap.Tooltip(button,
{ trigger: "manual",
customClass: "code-copy-button-tooltip",
offset: [0, -8]});
tooltip.show();
}
setTimeout(function() {
if (tooltip) {
tooltip.hide();
button.removeAttribute("data-bs-title");
button.removeAttribute("data-bs-toggle");
button.removeAttribute("data-bs-placement");
}
button.setAttribute("title", currentTitle);
button.classList.remove('code-copy-button-checked');
}, 1000);
// clear code selection
e.clearSelection();
}
const getTextToCopy = function(trigger) {
const outerScaffold = trigger.parentElement.cloneNode(true);
const codeEl = outerScaffold.querySelector('code');
for (const childEl of codeEl.children) {
if (isCodeAnnotation(childEl)) {
childEl.remove();
}
}
return codeEl.innerText;
}
const clipboard = new window.ClipboardJS('.code-copy-button:not([data-in-quarto-modal])', {
text: getTextToCopy
});
clipboard.on('success', onCopySuccess);
if (window.document.getElementById('quarto-embedded-source-code-modal')) {
const clipboardModal = new window.ClipboardJS('.code-copy-button[data-in-quarto-modal]', {
text: getTextToCopy,
container: window.document.getElementById('quarto-embedded-source-code-modal')
});
clipboardModal.on('success', onCopySuccess);
}
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//);
var mailtoRegex = new RegExp(/^mailto:/);
var filterRegex = new RegExp('/' + window.location.host + '/');
var isInternal = (href) => {
return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href);
}
// Inspect non-navigation links and adorn them if external
var links = window.document.querySelectorAll('a[href]:not(.nav-link):not(.navbar-brand):not(.toc-action):not(.sidebar-link):not(.sidebar-item-toggle):not(.pagination-link):not(.no-external):not([aria-hidden]):not(.dropdown-item):not(.quarto-navigation-tool):not(.about-link)');
for (var i=0; i<links.length; i++) {
const link = links[i];
if (!isInternal(link.href)) {
// undo the damage that might have been done by quarto-nav.js in the case of
// links that we want to consider external
if (link.dataset.originalHref !== undefined) {
link.href = link.dataset.originalHref;
}
}
}
function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) {
const config = {
allowHTML: true,
maxWidth: 500,
delay: 100,
arrow: false,
appendTo: function(el) {
return el.parentElement;
},
interactive: true,
interactiveBorder: 10,
theme: 'quarto',
placement: 'bottom-start',
};
if (contentFn) {
config.content = contentFn;
}
if (onTriggerFn) {
config.onTrigger = onTriggerFn;
}
if (onUntriggerFn) {
config.onUntrigger = onUntriggerFn;
}
window.tippy(el, config);
}
const noterefs = window.document.querySelectorAll('a[role="doc-noteref"]');
for (var i=0; i<noterefs.length; i++) {
const ref = noterefs[i];
tippyHover(ref, function() {
// use id or data attribute instead here
let href = ref.getAttribute('data-footnote-href') || ref.getAttribute('href');
try { href = new URL(href).hash; } catch {}
const id = href.replace(/^#\/?/, "");
const note = window.document.getElementById(id);
if (note) {
return note.innerHTML;
} else {
return "";
}
});
}
const xrefs = window.document.querySelectorAll('a.quarto-xref');
const processXRef = (id, note) => {
// Strip column container classes
const stripColumnClz = (el) => {
el.classList.remove("page-full", "page-columns");
if (el.children) {
for (const child of el.children) {
stripColumnClz(child);
}
}
}
stripColumnClz(note)
if (id === null || id.startsWith('sec-')) {
// Special case sections, only their first couple elements
const container = document.createElement("div");
if (note.children && note.children.length > 2) {
container.appendChild(note.children[0].cloneNode(true));
for (let i = 1; i < note.children.length; i++) {
const child = note.children[i];
if (child.tagName === "P" && child.innerText === "") {
continue;
} else {
container.appendChild(child.cloneNode(true));
break;
}
}
if (window.Quarto?.typesetMath) {
window.Quarto.typesetMath(container);
}
return container.innerHTML
} else {
if (window.Quarto?.typesetMath) {
window.Quarto.typesetMath(note);
}
return note.innerHTML;
}
} else {
// Remove any anchor links if they are present
const anchorLink = note.querySelector('a.anchorjs-link');
if (anchorLink) {
anchorLink.remove();
}
if (window.Quarto?.typesetMath) {
window.Quarto.typesetMath(note);
}
if (note.classList.contains("callout")) {
return note.outerHTML;
} else {
return note.innerHTML;
}
}
}
for (var i=0; i<xrefs.length; i++) {
const xref = xrefs[i];
tippyHover(xref, undefined, function(instance) {
instance.disable();
let url = xref.getAttribute('href');
let hash = undefined;
if (url.startsWith('#')) {
hash = url;
} else {
try { hash = new URL(url).hash; } catch {}
}
if (hash) {
const id = hash.replace(/^#\/?/, "");
const note = window.document.getElementById(id);
if (note !== null) {
try {
const html = processXRef(id, note.cloneNode(true));