-
Notifications
You must be signed in to change notification settings - Fork 3
/
temple_bib.html
7129 lines (7129 loc) · 382 KB
/
temple_bib.html
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="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>Bibliography for temple database</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
svg {
height: auto;
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
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;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
/* 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>
</head>
<body>
<header id="title-block-header">
<h1 class="title">Bibliography for temple database</h1>
</header>
<div id="refs" class="references csl-bib-body hanging-indent"
data-entry-spacing="0" role="list">
<div id="ref-Abramson1979" class="csl-entry" role="listitem">
Abramson, Herbert. 1979. <span>“A Hero Shrine for Phrontis at
Sounion?”</span> <em>California Studies in Classical Antiquity</em> 12
(January): 1–19. <a
href="https://doi.org/10.2307/25010736">https://doi.org/10.2307/25010736</a>.
</div>
<div id="ref-Adriani1963" class="csl-entry" role="listitem">
Adriani, Achille. 1963–1966. <em>Repertorio d’arte dell’Egitto
greco-romano</em>. C 1-2. Palermo.
</div>
<div id="ref-Ainsworth1842" class="csl-entry" role="listitem">
Ainsworth, William. 1842. <em>Travels and Researches in Asia Minor,
Mesopotamia, Chaldea, and Armenia</em>. 2 vols. London: J. W. Parker. <a
href="https://catalog.hathitrust.org/Record/001240728">https://catalog.hathitrust.org/Record/001240728</a>.
</div>
<div id="ref-Alba2013" class="csl-entry" role="listitem">
Alba, Luciano. 2013. <span>“Il tempio punico di Genna Cantonis di
Iglesias.”</span> <em>Notiziario C.I.S.S.A.</em> 3 (September): 1–20.
</div>
<div id="ref-Albana2004" class="csl-entry" role="listitem">
Albana, Mela. 2004. <span>“I luoghi della memoria a Roma in età
repubblicana: templi e archivi.”</span> <em>Annali della facoltà di
Scienze della formazione</em> 3.
</div>
<div id="ref-Albanesi2020-2" class="csl-entry" role="listitem">
Albanesi, Matelda, and Maria Romana Picuti. 2020a.
<span>“Conclusioni.”</span> In <em>Il Sasso di Pale di Foligno nel
contesto antico della bassa valle del Menotre: archeologia a scuola:
esperienza didattica del Liceo Classico <span>“F.Frezzi-B.
Angela”</span> di Foligno e della Soprintendenza archeologia, belle arti
e paesaggio dell’Umbria</em>, edited by Matelda Albanesi, Maria Romana
Picuti, and Gabriella Sabatini, 71–75. S. Sisto Perugia: Fabrizio Fabbri
editore.
</div>
<div id="ref-Albanesi2020-1" class="csl-entry" role="listitem">
———. 2020b. <span>“Il tempio in località Nocette di Pale: lo scavo e i
materiali.”</span> In <em>Il Sasso di Pale di Foligno nel contesto
antico della bassa valle del Menotre: archeologia a scuola: esperienza
didattica del Liceo Classico <span>“F.Frezzi-B. Angela”</span> di
Foligno e della Soprintendenza archeologia, belle arti e paesaggio
dell’Umbria</em>, edited by Matelda Albanesi, Maria Romana Picuti, and
Gabriella Sabatini, 45–66. S. Sisto Perugia: Fabrizio Fabbri editore.
</div>
<div id="ref-Albers2007" class="csl-entry" role="listitem">
Albers, Jon. 2007. <em>Der Tempel von Celle in Civita Castellana:
Untersuchungen zur etruskischen Architektur, zum Terrakottaschmuck und
Sakralwesen am Beispiel eines faliskischen Heiligtums vom 6. bis 1.
Jahrh. v. Chr</em>. 1st ed. Bristol Berlin: Tenea.
</div>
<div id="ref-Albers2017" class="csl-entry" role="listitem">
Albers, Jon, Miriam Rimböck, and Claudia Widow. 2017. <span>“Neue
Forschung zum korinthisch-dorischen Tempel am Forum von Paestum: Bericht
der Vorkampagne.”</span> <em>Kölner und Bonner Archaeologica</em>.
</div>
<div id="ref-Albers2021" class="csl-entry" role="listitem">
Albers, Jon, and Claudia Widow. 2021. <span>“Il tempio al foro di
Paestum, nuovi scavi 2019.”</span> In <em>Dialoghi sull’archeologia
della Magna Grecia e del Mediterraneo. 3</em>, edited by Emanuele Greco,
Anna Salzano, and Calogero Ivan Tornese, 23–31. Paestum: Pandemos.
</div>
<div id="ref-Albers2019" class="csl-entry" role="listitem">
Albers, Jon, Claudia Widow, Miriam Rimböck, and Theresa Rafflenbeul.
2019. <span>“Der korinthisch-dorische Tempel am Forum von Paestum: Die
Grabungskampagne 2019.”</span> <em>Kölner und Bonner Archaeologica</em>.
</div>
<div id="ref-Albo2002" class="csl-entry" role="listitem">
Albo, Carlo. 2002. <span>“Il Capitolium di Ostia. Alcune considerazioni
sulla tecnica edilizia ed ipotesi ricostruttiva.”</span> <em>Mélanges de
l’école française de Rome</em> 114 (1): 363–90. <a
href="https://doi.org/10.3406/mefr.2002.10702">https://doi.org/10.3406/mefr.2002.10702</a>.
</div>
<div id="ref-Altenhofer2007" class="csl-entry" role="listitem">
Altenhöfer, E. 2007. <span>“Die Cella des Dioskurentempels in
Cori.”</span> <em>Rheinisches Museum für Philologie</em> 113: 373–97.
</div>
<div id="ref-Altherr-Charon1977" class="csl-entry" role="listitem">
Altherr-Charon, Antoinette. 1977. <span>“Origine des temples à trois
<em>cellae</em> du bassin méditerranéen est: état de la
question.”</span> <em>L’Antiquité Classique</em> 46 (2): 389–440. <a
href="https://doi.org/10.3406/antiq.1977.1863">https://doi.org/10.3406/antiq.1977.1863</a>.
</div>
<div id="ref-Ambrosini2013" class="csl-entry" role="listitem">
Ambrosini, Laura, and Laura Maria Michetti. 2013. <span>“L’ultima
frequentazione del santuario meridionale: testimonianze dai
contesti.”</span> In <em>Riflessioni su Pyrgi: scavi e ricerche nelle
aree del santuario</em>, edited by Maria Paola Baglione and Maria
Donatella Gentili, 123–66. Roma: <span>“L’Erma”</span> di Bretschneider.
</div>
<div id="ref-Amoroso2007" class="csl-entry" role="listitem">
Amoroso, Angelo. 2007. <span>“Il tempio di <em>Tellus</em> e il
quartiere della <em>praefectura urbana</em>.”</span> <em>Workshop di
Archeologia Classica</em> 4: 53–84.
</div>
<div id="ref-AnadoluAgency2018" class="csl-entry" role="listitem">
Anadolu Agency. 2018. <span>“400 Ancient Drawings Belonging to Çavdar
Turks Found in Temple of Zeus.”</span> DailySabah. October 1, 2018. <a
href="https://www.dailysabah.com/history/2018/10/02/400-ancient-drawings-belonging-to-cavdar-turks-found-in-temple-of-zeus">https://www.dailysabah.com/history/2018/10/02/400-ancient-drawings-belonging-to-cavdar-turks-found-in-temple-of-zeus</a>.
</div>
<div id="ref-Anderson1967" class="csl-entry" role="listitem">
Anderson, J. K. 1967. <span>“Corinth: Temple E Northwest Preliminary
Report, 1965.”</span> <em>Hesperia: The Journal of the American School
of Classical Studies at Athens</em> 36 (1): 1–12. <a
href="https://doi.org/10.2307/147614">https://doi.org/10.2307/147614</a>.
</div>
<div id="ref-Anderson1984" class="csl-entry" role="listitem">
Anderson, James C. 1984. <em>The Historical Topography of the Imperial
Fora</em>. Collection Latomus 182. Bruxelles: Latomus.
</div>
<div id="ref-Andreae1959" class="csl-entry" role="listitem">
Andreae, Bernard. 1959. <span>“Archäologische Funde und Grabungen im
Bereich der Soprintendenzen von Nord- und Mittelitalien
1949-1959.”</span> <em>Archäologischer Anzeiger</em> 8: 107–238.
</div>
<div id="ref-Andren1940" class="csl-entry" role="listitem">
Andrén, A. 1940. <em>Architectural Terracottas from Etrusco-Italic
Temples</em>. Lund.
</div>
<div id="ref-Andren1959" class="csl-entry" role="listitem">
Andrén, Arvid. 1959–1960. <span>“Origine e formazione dell’architettura
templare etrusco-italica.”</span> <em>Rendiconti della Pontificia
Academia Romana di archeologia</em> 32: 21–21.
</div>
<div id="ref-Andren1971" class="csl-entry" role="listitem">
———. 1971. <span>“Osservazioni sulle terrecotte architettoniche
etrusco-italiche.”</span> <em>Opuscula Romana</em>, Lectiones Boëthianae
I, 8 (1): 1–16, pl. 1–40.
</div>
<div id="ref-Andringa2013-1" class="csl-entry" role="listitem">
Andringa, William Van. 2013a. <span>“Bibliographie générale du dossier
«Archéologie et religion: le sanctuaire dionysiaque de S. Abbondio à
Pompéi».”</span> <em>Mélanges de l’École française de Rome -
Antiquité</em> 125 (1). <a
href="https://doi.org/10.4000/mefra.1247">https://doi.org/10.4000/mefra.1247</a>.
</div>
<div id="ref-Andringa2013" class="csl-entry" role="listitem">
———. 2013b. <span>“Introduction.”</span> <em>Mélanges de l’École
française de Rome - Antiquité</em> 125 (1). <a
href="https://doi.org/10.4000/mefra.1256">https://doi.org/10.4000/mefra.1256</a>.
</div>
<div id="ref-Angeletti1983" class="csl-entry" role="listitem">
Angeletti, Glauco. 1983. <span>“Scavi e scoperte: Pescosansonesco
(PE).”</span> <em>Studi Etruschi</em> 51: 483–85.
</div>
<div id="ref-Angeletti2003" class="csl-entry" role="listitem">
Angeletti, Glauco, and Paola Riccitelli. 2003. <span>“Il santuario di
Pescosansonesco.”</span> In, edited by Luisa Franchi Dell’Orto and
Claudia Vultaggio, 127–33. Documenti dell’Abruzzo teramano 6. Teramo:
Fondazione Cassa di Risparmio della Provincia di Teramo.
</div>
<div id="ref-AntonacciSanpaolo2001" class="csl-entry" role="listitem">
Antonacci Sanpaolo, Elena. 2001. <span>“Landscape Changes: Romanization
and New Settlement Patterns at Tiati.”</span> In <em>Italy and the West:
Comparative Issues in Romanization</em>, edited by Simon J. Keay and
Nicola Terrenato, 27–38. Oxford; Oakville, CT: Oxbow Books ; Available
from, D. Brown Book Co.
</div>
<div id="ref-AntonacciSanpaolo1995" class="csl-entry" role="listitem">
Antonacci Sanpaolo, Elena, and Lorenzo Quilici. 1995.
<span>“Tiati-Teanum Apulum-Civitate: topografia storica del
territorio.”</span> In <em>Tiati-Teanum Apulum-Civitate ed il suo
territorio: Atti della tavola rotonda (15° convegno nazionale sulla
preistoria - Protostoria - storia della Daunia, 27-28 novembre
1993)</em>, edited by Grazioso Piccaluga, 81–99. San Severo.
</div>
<div id="ref-Antonaccio1992" class="csl-entry" role="listitem">
Antonaccio, Carla M. 1992. <span>“Terraces, Tombs, and the Early Argive
Heraion.”</span> <em>Hesperia: The Journal of the American School of
Classical Studies at Athens</em> 61 (1): 85–105. <a
href="https://doi.org/10.2307/148184">https://doi.org/10.2307/148184</a>.
</div>
<div id="ref-Apsimon1965" class="csl-entry" role="listitem">
Apsimon, A.M. 1965. <span>“The Roman Temple on Brean Down,
Somerset.”</span> <em>Proceedings of the University of Bristol
Spelaeology Society</em> 10 (3): 195–258.
</div>
<div id="ref-Arata2010" class="csl-entry" role="listitem">
Arata, Francesco Paolo. 2010. <span>“Osservazioni sulla topografia sacra
dell’<em>Arx</em> capitolina.”</span> <em>Mélanges de l’École française
de Rome - Antiquité</em>, no. 122-1 (September): 117–46. <a
href="https://doi.org/10.4000/mefra.338">https://doi.org/10.4000/mefra.338</a>.
</div>
<div id="ref-ArceMartinez1994" class="csl-entry" role="listitem">
Arce Martínez, Javier. 1994. <span>“<span>‘Iuppiter Stator’</span> en
Roma.”</span> In <em>La Ciutat en el món romà: actes</em>, edited by
Xavier Dupré i Raventós, 1st ed., 79–90. Tarragona: Comitè Organitzador
del XIV C.I.A.C.: Consejo Superior de Investigaciones Científicas:
Institut d’Estudis Catalans.
</div>
<div id="ref-Ardito2000" class="csl-entry" role="listitem">
Ardito, Stefano. 2000. <em>Guida alle meraviglie sconosciute
d’Abruzzo</em>. Le gemme. Pescara: Carsa. <a
href="https://www.unilibro.it/libro/ardito-stefano/guida-meraviglie-sconosciute-abruzzo/9788885854840?idaff=facebook">https://www.unilibro.it/libro/ardito-stefano/guida-meraviglie-sconosciute-abruzzo/9788885854840?idaff=facebook</a>.
</div>
<div id="ref-Arena2013" class="csl-entry" role="listitem">
Arena, Emiliano. 2013. <span>“Alessandro <span>‘Basileus’</span> nella
documentazione epigrafica: La dedica del tempio di Atena a Priene
(<span>‘I.Priene’</span> 156).”</span> <em>Historia: Zeitschrift für
Alte Geschichte</em> 62 (1): 48–79. <a
href="https://www.jstor.org/stable/24433623">https://www.jstor.org/stable/24433623</a>.
</div>
<div id="ref-Arizza2015-1" class="csl-entry" role="listitem">
Arizza, Marco. 2015. <span>“Una struttura templare in opera quadrata sul
Quirinale.”</span> In <em>La scoperta di una struttura templare sul
Quirinale presso l’ex Regio Ufficio Geologico: atti della giornata di
studi, 16 ottobre 2013, Palazzo Massimo (Roma)</em>, edited by Marco
Arizza and Mirella Serlorenzi, 63–91. Roma: Iuno.
</div>
<div id="ref-Armellin2004" class="csl-entry" role="listitem">
Armellin, Priscilla, and Paola Quaranta. 2004. <span>“Il tempio di Diana
sull’Aventino. Nuove acquisizioni.”</span> <em>Bullettino della
Commissione Archeologica Comunale di Roma</em> 105: 279–98. <a
href="https://www.jstor.org/stable/44515973">https://www.jstor.org/stable/44515973</a>.
</div>
<div id="ref-Arramond1997" class="csl-entry" role="listitem">
Arramond, Jean-Charles, Jean-Luc Boudartchouk, Laurent Grimbert, Laurent
Llech, Henri Molet, and Isabelle Rodet-Belarbi. 1997. <span>“Le
<em>Capitolium</em> de <em>Tolosa</em>?: Les fouilles du parking
Esquirol, Premiers résultats et essai d’interprétation.”</span>
<em>Gallia</em> 54: 203–38. <a
href="https://doi.org/10.3406/galia.1997.2997">https://doi.org/10.3406/galia.1997.2997</a>.
</div>
<div id="ref-Arveille2010" class="csl-entry" role="listitem">
Arveille, Véronique, ed. 2010. <em>Sur les traces d’Apollon: Grand la
Gallo-Romaine</em>. Paris: Épinal: Somogy; Conseil général des Vosges.
</div>
<div id="ref-Ateslier2011" class="csl-entry" role="listitem">
Ateşlier, Suat. 2011. <span>“The Archaic Architectural Terracottas from
Euromos and Some Cult Signs.”</span> In <em>Labraunda and Karia:
Proceedings of the International Symposium Commemorating Sixty Years of
Swedish Archaeological Work in Labraunda: The Royal Swedish Academy of
Letters, History and Antiquities, Stockholm, November 20-21, 2008</em>,
edited by Lars Karlsson and Susanne Carlsson. Acta Universitatis
Upsaliensis. Boreas 32. Uppsala: Uppsala Universitet.
</div>
<div id="ref-Attenni2004-1" class="csl-entry" role="listitem">
Attenni, Luca. 2004. <span>“Il tempio di Giunone Sospita: nuove
considerazioni sulla fase tardoarcaica.”</span> In <em>Museo e
territorio: atti della 3. Giornata di studi, Velletri, 7-8 marzo
2003</em>, edited by Micaela Angle and Anna Germano, 160–68. Roma;
Velletri (Roma): L’Erma di Bretschneider; Comune di Velletri. <a
href="https://www.torrossa.com/it/resources/an/2640296">https://www.torrossa.com/it/resources/an/2640296</a>.
</div>
<div id="ref-Attilj1904" class="csl-entry" role="listitem">
Attilj, Severino. 1904. <em>Il tempio d’Ercole e gli altri monumenti di
Cori: con accenno alle origini</em>. Roma: E. Loescher.
</div>
<div id="ref-PAupert1992" class="csl-entry" role="listitem">
Aupert, P. 1992. <em>Sanxay: un grand sanctuaire rural
gallo-romain</em>. Guide archéologique de la France 25. Sanxay.
</div>
<div id="ref-Bacchielli1985" class="csl-entry" role="listitem">
Bacchielli, Lidiano. 1985. <span>“<em>Domus Veneris quam Dorica sustinet
Ancon</em>.”</span> <em>Archeologia Classica</em> 37: 106–37. <a
href="https://www.jstor.org/stable/44366121">https://www.jstor.org/stable/44366121</a>.
</div>
<div id="ref-Baddeley1930" class="csl-entry" role="listitem">
Baddeley, W. St. Clair. 1930. <span>“The Romano-British Temple,
Chedworth.”</span> <em>Trans Bristol and Gloucestershire Archaeological
Society</em> 52: 255–64.
</div>
<div id="ref-Baglione1985" class="csl-entry" role="listitem">
Baglione, Maria Paola. 1985. <span>“Il santuario di Grasceta dei
Cavallari sui Monti della Tolfa - C. Monete.”</span> In <em>Santuari
d’Etruria</em>, edited by Giovanni Colonna, 157. Milano: Regione
Toscana: Electa.
</div>
<div id="ref-Baglione2013" class="csl-entry" role="listitem">
Baglione, Maria Paola, and Maria Donatella Gentili, eds. 2013.
<em>Riflessioni su Pyrgi: scavi e ricerche nelle aree del
santuario</em>. Roma: <span>“L’Erma”</span> di Bretschneider.
</div>
<div id="ref-Balandier2024" class="csl-entry" role="listitem">
Balandier, Claire. 2024. <span>“Mission archéologique française à
Paphos. Rapport de première année (2019).”</span> Avignon Université ;
UMR 5189 HiSoMA ; Commission des fouilles du ministère de l’Europe et
des affaires étrangères. <a
href="https://hal.science/hal-04477115">https://hal.science/hal-04477115</a>.
</div>
<div id="ref-Balandier2021" class="csl-entry" role="listitem">
Balandier, Claire, and Jolanta Młynarczyk. 2021. <span>“The Temple and
Its Surroundings on Fabrika Hill, Paphos: Preliminary Esults of the
French-Polish Excavations (2018–2019).”</span> <em>Études Et
Travaux</em>, no. 34 (December). <a
href="https://doi.org/10.12775/EtudTrav.34.003">https://doi.org/10.12775/EtudTrav.34.003</a>.
</div>
<div id="ref-Balasco2008" class="csl-entry" role="listitem">
Balasco, Alfredo. 2008. <span>“Le vicende architettoniche del tempio di
Venere ad Ercolano e la sua anastilosi.”</span> <em>Rendiconti della
Pontificia Academia Romana di archeologia</em> 81: 69–107.
</div>
<div id="ref-Baldassarri2013" class="csl-entry" role="listitem">
Baldassarri, Paola. 2013. <span>“Alla ricerca del tempio perduto:
indagini archeologiche a Palazzo Valentini e il <em>templum divi Traiani
et divae Plotinae</em>.”</span> <em>Archeologia Classica</em> 64:
371–482. <a
href="https://www.jstor.org/stable/26234042">https://www.jstor.org/stable/26234042</a>.
</div>
<div id="ref-I.Baldini2007" class="csl-entry" role="listitem">
Baldini, Isabella, Enzo Lippolis, Monica Livadiotti, and Giorio Rocco.
2007. <span>“Il tempio del Caput Aquae nel tessuto urbano
circostante.”</span> <em>Annuario della scuola archeologica italiana di
atene</em> 83: 271–96.
</div>
<div id="ref-Bammer2008" class="csl-entry" role="listitem">
Bammer, Anton. 2008. <span>“Der sogenannte Hekatompedos und Tempel
C.”</span> In <em>Die Archäologie der ephesischen Artemis: Gestalt und
ritual eines Heiligtums</em>, edited by Ulrike Muss, 251–54. Wien:
Phoibos Verlag.
</div>
<div id="ref-Bammer2009" class="csl-entry" role="listitem">
Bammer, Anton, and Ulrike Muss. 2009. <span>“Der Hekatompedos im
Artemision von Ephesos.”</span> <em>Anatolia antiqua. Eski Anadolu</em>
17 (1): 151–74. <a
href="https://doi.org/10.3406/anata.2009.1279">https://doi.org/10.3406/anata.2009.1279</a>.
</div>
<div id="ref-Baran2006" class="csl-entry" role="listitem">
Baran, Abdulkadir. 2006. <span>“The Archaic Temple of Zeus
Labraundos.”</span> <em>Anadolu/Anatolia</em> 30: 21–46.
</div>
<div id="ref-Barattolo1995" class="csl-entry" role="listitem">
Barattolo, Andrea. 1995. <span>“The Temple of Hadrian-Zeus at Cyzicus: A
New Proposed Reconstruction for a Fresh Architectonic and Ideological
Interpretation.”</span> <em>Istanbuler Mitteilungen</em> 45: 57–108.
</div>
<div id="ref-Barello2007" class="csl-entry" role="listitem">
Barello, Federico. 2007. <span>“Susa, Piazza Savoia. Tempio forense e
resti delle strutture circostanti.”</span> <em>Quaderni della
Soprintendenza archeologica del Piemonte</em> 22: 276–78.
</div>
<div id="ref-Barker1995" class="csl-entry" role="listitem">
Barker, Graeme, ed. 1995. <em>The Biferno Valley Survey: The
Archaeological and Geomorphological Record</em>. London; New York:
Leicester University Press.
</div>
<div id="ref-Barletta1990" class="csl-entry" role="listitem">
Barletta, Barbara A. 1990. <span>“An <span>‘Ionian Sea’</span> Style in
Archaic Doric Architecture.”</span> <em>American Journal of
Archaeology</em> 94 (1): 45–72. <a
href="https://doi.org/10.2307/505525">https://doi.org/10.2307/505525</a>.
</div>
<div id="ref-Barletta2016" class="csl-entry" role="listitem">
———. 2016. <span>“Monumentality and Foreign Influence in Early Greek
Temples.”</span> In <em>A Companion to Greek Architecture</em>, edited
by Margaret M. Miles, 100–122. Hoboken, NJ, USA: John Wiley & Sons,
Inc. <a
href="https://doi.org/10.1002/9781118327586">https://doi.org/10.1002/9781118327586</a>.
</div>
<div id="ref-Barletta2017-6" class="csl-entry" role="listitem">
Barletta, Barbara A., William Bell Dinsmoor, and Homer A. Thompson.
2017a. <span>“Afterlife of the Temple of Athena.”</span> In <em>The
Sanctuary of Athena at Sounion</em>, 4:219–52. The American School of
Classical Studies at Athens. <a
href="https://doi.org/10.2972/j.ctv9hj9bh.12">https://doi.org/10.2972/j.ctv9hj9bh.12</a>.
</div>
<div id="ref-Barletta2017-8" class="csl-entry" role="listitem">
———. 2017b. <span>“Catalogue of Architectural Finds.”</span> In <em>The
Sanctuary of Athena at Sounion</em>, 4:261–93. The American School of
Classical Studies at Athens. <a
href="https://doi.org/10.2972/j.ctv9hj9bh.14">https://doi.org/10.2972/j.ctv9hj9bh.14</a>.
</div>
<div id="ref-Barletta2017-7" class="csl-entry" role="listitem">
———. 2017c. <span>“Conclusions.”</span> In <em>The Sanctuary of Athena
at Sounion</em>, 4:253–60. The American School of Classical Studies at
Athens. <a
href="https://doi.org/10.2972/j.ctv9hj9bh.13">https://doi.org/10.2972/j.ctv9hj9bh.13</a>.
</div>
<div id="ref-Barletta2017-9" class="csl-entry" role="listitem">
———. 2017d. <span>“Concordance.”</span> In <em>The Sanctuary of Athena
at Sounion</em>, 4:336–37. The American School of Classical Studies at
Athens. <a
href="https://doi.org/10.2972/j.ctv9hj9bh.18">https://doi.org/10.2972/j.ctv9hj9bh.18</a>.
</div>
<div id="ref-Barletta2017-1" class="csl-entry" role="listitem">
———. 2017e. <span>“Introduction.”</span> In <em>The Sanctuary of Athena
at Sounion</em>, 4:1–14. The American School of Classical Studies at
Athens. <a
href="https://doi.org/10.2972/j.ctv9hj9bh.7">https://doi.org/10.2972/j.ctv9hj9bh.7</a>.
</div>
<div id="ref-Barletta2017-2" class="csl-entry" role="listitem">
———. 2017f. <span>“Investigations in the Sanctuary of Athena.”</span> In
<em>The Sanctuary of Athena at Sounion</em>, 4:15–52. The American
School of Classical Studies at Athens. <a
href="https://doi.org/10.2972/j.ctv9hj9bh.8">https://doi.org/10.2972/j.ctv9hj9bh.8</a>.
</div>
<div id="ref-Barletta2017-3" class="csl-entry" role="listitem">
———. 2017g. <span>“The Small Temple in the Sanctuary of Athena.”</span>
In <em>The Sanctuary of Athena at Sounion</em>, 4:53–84. The American
School of Classical Studies at Athens. <a
href="https://doi.org/10.2972/j.ctv9hj9bh.9">https://doi.org/10.2972/j.ctv9hj9bh.9</a>.
</div>
<div id="ref-Barletta2017-5" class="csl-entry" role="listitem">
———. 2017h. <span>“The Temple of Athena in Context.”</span> In <em>The
Sanctuary of Athena at Sounion</em>, 4:161–218. The American School of
Classical Studies at Athens. <a
href="https://doi.org/10.2972/j.ctv9hj9bh.11">https://doi.org/10.2972/j.ctv9hj9bh.11</a>.
</div>
<div id="ref-Barletta2017-4" class="csl-entry" role="listitem">
———. 2017i. <span>“The Temple of Athena: Description and
Reconstruction.”</span> In <em>The Sanctuary of Athena at Sounion</em>,
4:85–160. The American School of Classical Studies at Athens. <a
href="https://doi.org/10.2972/j.ctv9hj9bh.10">https://doi.org/10.2972/j.ctv9hj9bh.10</a>.
</div>
<div id="ref-Barletta2017" class="csl-entry" role="listitem">
Barletta, Barbara A., William B. Dinsmoor, and Homer A. Thompson. 2017j.
<em>The Sanctuary of Athena at Sounion</em>. Ancient Art and
Architecture in Context 4. Princeton: The American School of Classical
Studies at Athens.
</div>
<div id="ref-Barreca1969" class="csl-entry" role="listitem">
Barreca, Ferruccio. 1969. <span>“Lo scavo del tempio.”</span> In
<em>Ricerche puniche ad Antas. Rapporto preliminare</em>, edited by
Enrico Acquaro, 9–46. Roma: Istituto di studi del vicino oriente,
Università.
</div>
<div id="ref-Barresi1990" class="csl-entry" role="listitem">
Barresi, Paolo. 1990a. <span>“Schemi geometrici nei templi dell’Italia
centrale.”</span> <em>Archeologia Classica</em> 42: 251–85. <a
href="https://www.jstor.org/stable/44367381">www.jstor.org/stable/44367381</a>.
</div>
<div id="ref-Barresi1990-1" class="csl-entry" role="listitem">
———. 1990b. <span>“Schemi geometrici nei templi dell’italia
centrale.”</span> <em>Archeologia classica</em> 42: 251–85. <a
href="https://www.jstor.org/stable/44367381">https://www.jstor.org/stable/44367381</a>.
</div>
<div id="ref-Bartoccini1963" class="csl-entry" role="listitem">
Bartoccini, Renato. 1963. <span>“Il tempio grande di Vulci.”</span> In
<em>Études étrusco-italiques</em>, edited by Franz de Ruyt, 9–12.
Recueil de travaux d’histoire et de philologie, 4e série 31. Louvain:
Publ. Univ.
</div>
<div id="ref-Bartoloni2006" class="csl-entry" role="listitem">
Bartoloni, Gilda, Valeria Acconcia, Alessandra Piergrossi, Iefke van
Kampen, and Silvia ten Kortenaar. 2006. <span>“Veio: l’abitato di Piazza
d’Armi. Le terrecotte architettoniche.”</span> In <em>Deliciae fictiles
III: architectural terracottas in ancient Italy: new discoveries and
interpretations: proceedings of the international conference held at the
American Academy in Rome, November 7-8, 2002</em>, edited by Ingrid E.
M. Edlund-Berry, Giovanna Greco, and John Fawcett Kenfield. Oxford:
Oxbow Books.
</div>
<div id="ref-Barton1982" class="csl-entry" role="listitem">
Barton, Ian M. 1982. <span>“Capitoline Temples in Italy and the
Provinces (Especially Africa).”</span> <em>Aufstieg Und Niedergang Der
Römischen Welt</em> 2.12 (1): 259–342.
</div>
<div id="ref-Bassel1886" class="csl-entry" role="listitem">
Bassel, R. B. 1886a. <span>“Neuaufgefundener Tempel in Alatri.”</span>
<em>Centralblatt der Bauverwaltung</em> 6 (21): 197–99.
</div>
<div id="ref-Bassel1886-1" class="csl-entry" role="listitem">
———. 1886b. <span>“Neuaufgefundener Tempel in Alatri.”</span>
<em>Centralblatt der Bauverwaltung</em> 6 (22): 207–9.
</div>
<div id="ref-Batino1996" class="csl-entry" role="listitem">
Batino, Sabrina. 1996. <span>“Iscrizione pavimentale da S. Angelo in
Formis, una revisione.”</span> <em>Ostraka</em> 6 (1): 15–20.
</div>
<div id="ref-Battaglini2019" class="csl-entry" role="listitem">
Battaglini, Giovanna, Filippo Coarelli, and Francesca Diosono, eds.
2019. <em>Fregellae: il tempio del Foro e il tempio suburbano sulla Via
Latina</em>. Monumenti antichi. Serie miscellanea 23. Roma:
Bretschneider.
</div>
<div id="ref-Baumer2004" class="csl-entry" role="listitem">
Baumer, Lorenz E. 2004. <em>Kult im Kleinen: ländliche Heiligtümer
spätarchaischer bis hellenistischer Zeit; Attika - Arkadien - Argolis -
Kynouria</em>. Internationale Archäologie, Bd. 81. Rahden/Westf: M.
Leidorf.
</div>
<div id="ref-Beatrizet1544" class="csl-entry" role="listitem">
Beatrizet, Nicolas, Ambrogio Brambilla, Etienne Du Pérac, Antonio
Salamanca, Tommaso. Barlacchi, Pietro de. Nobili, Nicolaus van Aelst,
Claude Duchet, and Antoine Lafréry. 1544. <em>Specvlvm Romanae
magnificentiae: omnia fere qvaecvnq- in vrbe monvmenta extant partim
ivxta antiqvam partim ivxta hodiernam formam accuratiss. delineata
repraesentans: accesserunt non paucae tum antiquarum tum modernarum
rerum urbis figurae nusquam antehac aeditae ...</em> Rome: Antoine
Lafréry, et al. <a
href="https://catalog.hathitrust.org/Record/101710046">https://catalog.hathitrust.org/Record/101710046</a>.
</div>
<div id="ref-Bechstein1891" class="csl-entry" role="listitem">
Bechstein, Otto. 1891. <em>Der Donon und seine Denkmäler</em>.
Strassburg.
</div>
<div id="ref-Becker2009" class="csl-entry" role="listitem">
Becker, Hilary. 2009. <span>“The Economic Agency of the Etruscan Temple:
Elites, Dedications and Display.”</span> In <em>Votives, Places and
Rituals in Etruscan Religion Studies in Honor of Jean MacIntosh
Turfa</em>, 87–99. Leiden; Boston: Brill. <a
href="http://public.eblib.com/EBLPublic/PublicView.do?ptiID=467571">http://public.eblib.com/EBLPublic/PublicView.do?ptiID=467571</a>.
</div>
<div id="ref-BelelliMarchesini1997" class="csl-entry" role="listitem">
Belelli Marchesini, Barbara. 1997. <span>“Tempio: Etruria.”</span> In
<em>Enciclopedia dell’arte antica, classica e orientale, secondo
supplemento</em>, edited by Giovanni Pugliese Carratelli, 628–38. 5.
Roma: Istituto della Enciclopedia italiana.
</div>
<div id="ref-BelelliMarchesini2013" class="csl-entry" role="listitem">
———. 2013. <span>“Le linee di sviluppo topografico del santuario
meridionale.”</span> In <em>Riflessioni su Pyrgi: scavi e ricerche nelle
aree del santuario</em>, edited by Maria Paola Baglione and Maria
Donatella Gentili, 11–40. Roma: <span>“L’Erma”</span> di Bretschneider.
</div>
<div id="ref-Belfiori2020" class="csl-entry" role="listitem">
Belfiori, Francesco. 2020. <span>“Roman Colonization, Sanctuaries and
Cult in the Middle-Adratic Area Between the 3rd and 2nd Centuries
BC.”</span> In <em>Boundaries Archaeology: Economy, Sacred Places,
Cultural Influences in the Ionian and Adriatic Areas: Panel 7.3</em>,
edited by Martin Bentz and Michael Heinzelmann, 39:5–23. Archaeology and
Economy in the Ancient World – Proceedings of the 19th International
Congress of Classical Archaeology. Heidelberg: University Library
Heidelberg. <a
href="https://books.ub.uni-heidelberg.de/index.php/propylaeum/catalog/book/553">https://books.ub.uni-heidelberg.de/index.php/propylaeum/catalog/book/553</a>.
</div>
<div id="ref-Bellelli2003" class="csl-entry" role="listitem">
Bellelli, Vincenzo. 2003. <span>“Appunti sul gorgoneion di
Norba.”</span> <em>Atlante tematico di topografia antica</em> 12:
385–98. <a
href="http://digital.casalini.it/2616537">http://digital.casalini.it/2616537</a>.
</div>
<div id="ref-Bellelli2018" class="csl-entry" role="listitem">
Bellelli, Vincenzo, Daniele Mollardi, and Isidoro Tantillo. 2018.
<span>“Cerveteri, area sacra del Manganello: l’organizzazione degli
spazi, l’architettura, gli arredi di culto.”</span> <em>Annali della
Fondazione per il Museo <span>“Claudio Faina”</span></em> 25: 199–243.
</div>
<div id="ref-Bencivenga2013" class="csl-entry" role="listitem">
Bencivenga, Alessandro. 2013. <span>“Luoghi, tempi e modi del culto di
Ercole tra i Paeligni (Regio iv – Sabina et Samnium).”</span> In <em>Los
lugares de la historia: Actas del IV Congreso Interdisciplinar de
Jóvenes Historiadores</em>, edited by José Manuel Aldea Celada, Carmen
López San Segundo, Paula Ortega Martínez, Mª de los Reyes de Soto
García, Francisco José Vicente Santos, and Jose Manuel Aldea Celada,
931–50. Temas y perspectivas de la historia 3. Salamanca: Asociación de
Jóvenes Historiadores.
</div>
<div id="ref-BendalaGalan1989" class="csl-entry" role="listitem">
Bendala Galán, Manuel. 1989–1990. <span>“Capitolia Hispaniarum.”</span>
<em>Anas</em> 2-3: 11–36.
</div>
<div id="ref-BendalaGalan2023" class="csl-entry" role="listitem">
Bendala Galán, Manuel, and Oliva Rodríguez Gutiérrez. 2023. <span>“El
edificio de las dos escaleras de Baelo Claudia: un templo neopúnico en
la nueva urbe costera.”</span> <em>Archivo Español de Arqueología</em>
96 (October): e13. <a
href="https://doi.org/10.3989/aespa.096.023.13">https://doi.org/10.3989/aespa.096.023.13</a>.
</div>
<div id="ref-Bendinelli1938" class="csl-entry" role="listitem">
Bendinelli, Goffredo. 1938. <span>“Monumentale tempio etrusco-romano
scoperto in frazione Villa San Silvestro - Cascia.”</span> <em>Notizie
degli scavi di antichità</em> 14: 141–58.
</div>
<div id="ref-Bertamini1976" class="csl-entry" role="listitem">
Bertamini, T. 1976. <span>“Tempietto lepontico a Montecrestese.”</span>
<em>Oscellana</em> 1 (January–March): 1–11.
</div>
<div id="ref-Bertaux2006" class="csl-entry" role="listitem">
Bertaux, Jean-Paul. 2006. <span>“Le sanctuaire de l’eau de Grand
d’Apollon ... à sainte Libaire.”</span> <em>Pays lorrain</em> 87: 7–14.
</div>
<div id="ref-Berto2012" class="csl-entry" role="listitem">
Berto, Simone, Giovanna Falezza, Andrea Raffaele Ghiotto, and Arturo
Zara. 2012. <span>“Il tempio romano di Nora. Nuovi dati.”</span> In
<em>L’Africa romana: trasformazione dei paesaggi del potere nell’Africa
settentrionale fino alla fine del mondo antico ; atti del XIX convegno
di studio, Sassari, 16 - 19 dicembre 2010</em>, edited by Maria Bastiana
Cocco, Alberto Gavini, and Antonio Ibba, 3:2911–29. Collana del
Dipartimento di Storia, Scienze dell’Uomo e della Formazione
dell’Università degli Studi di Sassari 43. Roma: Carocci.
</div>
<div id="ref-Berto2016" class="csl-entry" role="listitem">
Berto, Simone, and Arturo Zara. 2016. <span>“Il tempio romano di Nora:
dallo scavo alla valorizzazione.”</span> In <em>Nora antiqua: atti del
Convegno di studi, Cagliari, Cittadella dei Musei, 3-4 ottobre
2014</em>, edited by Simonetta Angiolillo, Marco Giuman, Romina Carboni,
and Emiliano Cruccas, 209–16.
</div>
<div id="ref-Bertrand2021" class="csl-entry" role="listitem">
Bertrand, Audrey, and Tiziana Capriotti, eds. 2021. <em>Fana, templa,
delubra. Corpus dei luoghi di culto dell’Italia antica. Regio V. Ancona,
Cingoli, Cupra Montana, Numana, Osimo, San Vittore di Cingoli</em>.
Fana, templa, delubra 7. Roma: Quasar.
</div>
<div id="ref-Berve1961" class="csl-entry" role="listitem">
Berve, Helmut, Gottfried Gruben, and Max Hirmer. 1961. <em>Griechische
Tempel und Heiligtümer</em>. München: Hirmer Verlag.
</div>
<div id="ref-Bianchini2010" class="csl-entry" role="listitem">
Bianchini, Marco. 2010. <span>“Le sostruzioni del tempio di Apollo
Sosiano e del portico adiacente.”</span> <em>Mélanges de l’École
française de Rome. Antiquité</em>, no. 122-2 (December): 525–48. <a
href="https://doi.org/10.4000/mefra.313">https://doi.org/10.4000/mefra.313</a>.
</div>
<div id="ref-Bianco2023" class="csl-entry" role="listitem">
Bianco, Rosy, and Antonio Pizzo. 2023. <span>“L’area monumentale di
Tusculum: nuove ricerche e proposte interpretative (età arcaica - età
imperiale).”</span> <em>Archivo Español de Arqueología</em> 96
(October): e11. <a
href="https://doi.org/10.3989/aespa.096.023.11">https://doi.org/10.3989/aespa.096.023.11</a>.
</div>
<div id="ref-Bielfeldt2007" class="csl-entry" role="listitem">
Bielfeldt, Ruth. 2007. <span>“Der Liber-Tempel in Pompeji in Sant’
Abbondio. Oskisches Vorstadtheiligtum und römisches
Vereinslokal.”</span> <em>Mitteilungen des Deutschen Archäologischen
Instituts, Römische Abteilung</em> 113: 317–71.
</div>
<div id="ref-Bilde2008" class="csl-entry" role="listitem">
Bilde, Pia Guldager, and Birte Poulsen, eds. 2008. <em>The Temple of
Castor and Pollux II. 1: The Finds</em>. Occasional Papers of the Nordic
Institutes in Rome 3. Roma: L’Erma di Bretschneider.
</div>
<div id="ref-Bilis2021" class="csl-entry" role="listitem">
Bilis, Themistokles. 2021. <span>“The Terraces of the Temples at
Karthaia and Their Development over Time. New Interpretations.”</span>
In <em>Éxochos Állōn: Timētikos Tomos Gia Tēn Kathēgētria Eya
Sēmantōnē-Burnia</em>, edited by Basileios K. Lamprinudakēs, Lina G.
Mendōnē, Maria Kutsumpu, Tania Panagu, Alexandra S. Sphyroera, Xenia
Charalambidou, and Euangelia Sēmantōnē-Mpurnia, 67–82. Athēna:
Organismos Diacheirisēs kai Anaptyxēs Politistikōn Porōn Dieuthynsē
Ekdoseōn kai Psēphiakōn Epharmogōn.
</div>
<div id="ref-Billot2008" class="csl-entry" role="listitem">
Billot, Marie-Françoise. 2008. <span>“Le temple de Despoina.”</span>
<em>Ktèma: civilisations de l’Orient, de la Grèce et de Rome
antiques</em> 33 (1): 135–80. <a
href="https://doi.org/10.3406/ktema.2008.1090">https://doi.org/10.3406/ktema.2008.1090</a>.
</div>
<div id="ref-Bina2010" class="csl-entry" role="listitem">
Bina, Tatiana. 2010. <span>“La place des temples gallo-romains dans
l’espace urbain.”</span> <em>Bollettino di archeologia on line</em> 1:
33–38. <a
href="https://bollettinodiarcheologiaonline.beniculturali.it/wp-content/uploads/2019/01/6_BINA.pdf">https://bollettinodiarcheologiaonline.beniculturali.it/wp-content/uploads/2019/01/6_BINA.pdf</a>.
</div>
<div id="ref-Binder2018" class="csl-entry" role="listitem">
Binder, Judith. 2018. <span>“The Monuments and Sites of Athens, a
Sourcebook.”</span> Edited by Robert Pitt and Brady Kiesling. <a
href="https://dipylon.org/pdfjs/web/Judith_Binder_Monuments.html.pdf">https://dipylon.org/pdfjs/web/Judith_Binder_Monuments.html.pdf</a>.
</div>
<div id="ref-Birley2003" class="csl-entry" role="listitem">
Birley, Andrew, and Justin Blake. 2003. <em>Vindolanda Excavations 2001
& 2002. Volumes I & II</em>. Bardon Mill: Vindolanda Trust.
</div>
<div id="ref-Birley2019" class="csl-entry" role="listitem">
Birley, Anthony R, and Andrew Birley. 2019. <span>“A Dolichenum at
Vindolanda.”</span> <em>Archaeologia Aeliana</em> 39: 25–51. <a
href="https://doi.org/10.5284/1061217">https://doi.org/10.5284/1061217</a>.
</div>
<div id="ref-Birley2012" class="csl-entry" role="listitem">
Birley, Michael, and Andrew Birley. 2012. <span>“A new Dolichenum,
inside the third-century fort at Vindolanda.”</span> In <em>Iuppiter
Dolichenus: vom Lokalkult zur Reichsreligion</em>, edited by Michael
Blömer and Engelbert Winter, 231–58. Orientalische Religionen in der
Antike. Tübingen: Mohr Siebeck.
</div>
<div id="ref-Blake1973" class="csl-entry" role="listitem">
Blake, Marion Elizabeth, and Doris Taylor Bishop. 1973. <em>Roman
Construction in Italy from Nerva Through the Antonines</em>.
Philadelphia: American Philosophical Society.
</div>
<div id="ref-Blanck1970" class="csl-entry" role="listitem">
Blanck, H. 1970. <span>“Archäologische Funde und Grabungen in
Mittel-Italien, 1959-1969.”</span> <em>Archäologischer Anzeiger</em>,
327–46.
</div>
<div id="ref-Blid2021" class="csl-entry" role="listitem">
Blid, Jesper, and Baukje van den Berg. 2021. <span>“The Temple of
Demeter Chthonia at Hermione.”</span> <em>Opuscula. Annual of the
Swedish Institutes at Athens and Rome</em> 14 (November): 101–34. <a
href="https://doi.org/10.30549/opathrom-14-07">https://doi.org/10.30549/opathrom-14-07</a>.
</div>
<div id="ref-Bloch1972" class="csl-entry" role="listitem">
Bloch, Raymond. 1972. <em>Recherches archéologiques en territoire
volsinien de la protohistoire à la civilisation étrusque</em>.
Bibliothèque des Écoles françaises d’Athènes et de Rome 220. Paris: De
Boccard.
</div>
<div id="ref-Bloch1973" class="csl-entry" role="listitem">
———, ed. 1973. <em>Scripta varia, II: les origines de Rome et la
république</em>. Collection Latomus 132. Bruxelles: Latomus.
</div>
<div id="ref-Boatwright2013" class="csl-entry" role="listitem">
Boatwright, Mary T. 2013. <span>“Hadrian and the Agrippa Inscription of
the Pantheon.”</span> In <em>Hadrian: Art, Politics and Economy</em>,
19–30. British Museum Research Publication 175.
</div>
<div id="ref-Bocci1961" class="csl-entry" role="listitem">
Bocci, Piera. 1961. <span>“Nuovi scavi del tempio di Fiesole.”</span>
<em>Studi Etruschi</em> 29: 411–15.
</div>
<div id="ref-Bockisch2013" class="csl-entry" role="listitem">
Bockisch, Gabriele, Peter Ruggendorfer, and Lilli Zabrana. 2013.
<span>“Temple and Altars for Greek and Carian Gods. New Evidence for
Religious Life in Alinda During the Late Classical and Hellenistic
Period.”</span> <em>Publications de l’Institut Français d’Études
Anatoliennes</em> 28 (1): 129–62. <a
href="https://www.persee.fr/doc/anatv_1013-9559_2013_ant_28_1_1288">https://www.persee.fr/doc/anatv_1013-9559_2013_ant_28_1_1288</a>.
</div>
<div id="ref-Boethius1954" class="csl-entry" role="listitem">
Boëthius, Axel. 1954. <span>“Marconi’s <span>‘Tempio L’</span> in
Agrigento. An Unsolved Problem.”</span> <em>Nederlands Kunsthistorisch
Jaarboek (NKJ) / Netherlands Yearbook for History of Art</em> 5: 85–90.
<a
href="http://www.jstor.org/stable/24705253">http://www.jstor.org/stable/24705253</a>.
</div>
<div id="ref-Bomgardner2016" class="csl-entry" role="listitem">
Bomgardner, David L. 2016. <span>“The Theatre-Temple Complex at
<em>Lepcis Magna</em>: Multiple Dimensions of Functionality or There’s
More Than One Way to Act on the Emperor.”</span> In <em>Theaterbauten
Als Teil Monumentaler Heiligtümer in Den Nordwestlichen Provinzen Des
Imperium Romanum: Architektur - Organisation - Nutzung: Internationales
Kolloquium in Augusta Raurica, 18.-21. September 2013, Auditorium
Römerstiftung Dr. René Clavel, Augst-Kastelen</em>, edited by Thomas
Hufschmid, 63–80. Forschungen in Augst 50. Augst: Augusta Raurica.
</div>
<div id="ref-Bommelaer1997" class="csl-entry" role="listitem">
Bommelaer, Jean-François, ed. 1997. <em>Marmaria: le sanctuaire d’Athéna
à Delphes</em>. Sites et monuments 16. Paris: Ecole franc̜aise d’Athènes;
Electricité de France; Dépositaire, De Boccard Edition-Diffusion.
</div>
<div id="ref-Bonetto2014" class="csl-entry" role="listitem">
Bonetto, Jacopo. 2014. <span>“Pula. Nora, tempio cosidetto di
Tanit.”</span> In <em>La Sardegna di Thomas Ashby: paesaggi,
archeologia, comunità : fotografie 1906-1912</em>, edited by Giuseppina
Manca di Mores. British School at Rome archive 12.
</div>
<div id="ref-Bonetto2016-1" class="csl-entry" role="listitem">
———. 2016. <span>“Architetti greci arcaici: unità di misura e progetto
del tempio di Apollo Pythios a Gortyna di Creta.”</span> In <em>I mille
volti del passato: scritti in onore di Francesca Ghedini</em>, edited by
Jacopo Bonetto and Francesca Ghedini, 523–68. Roma: Edizioni Quasar.
</div>
<div id="ref-Bonetto2021" class="csl-entry" role="listitem">
Bonetto, Jacopo, Anna Bertelli, Eliana Bridi, Edoardo Brombin, Valeria
de Scarpis di Vianino, and Maria Chiara Metelli. 2021. <span>“Il
Santuario di Apollo <em>Pythios</em> a Gortina di Creta: nuovi dati e
nuove considerazioni dalle ricerche del 2016 e del 2019.”</span>
<em>Annuario della scuola archeologica di Atene e delle missioni
italiane in oriente</em> 99: 54–73.
</div>
<div id="ref-Bonetto2020" class="csl-entry" role="listitem">
Bonetto, Jacopo, Anna Bertelli, and Edoardo Brombin. 2020. <span>“The
Transformation of the Sanctuary of Apollo Pythios at Gortyna in the
Hellenistic Period.”</span> In <em>Monetary and Social Aspects of
Hellenistic Crete</em>, edited by Renata Cantilena and Federico Carbone,
77–85. <span class="nocase">Annuario della scuola archeologica di Atene
e delle missioni italiane in oriente</span> 8. Atene: Scuola
archeologica italiana di Atene.
</div>
<div id="ref-Bonetto2020-1" class="csl-entry" role="listitem">
Bonetto, Jacopo, Anna Bertelli, Edoardo Brombin, Martina Colla, de
Scarpis di Vianino Valeria, and Maria Chiara Metelli. 2020. <span>“New
Perspectives on the Evolution of the Sanctuary of Apollo Pythios in
Gortyn.”</span> In <em>Αρχαιολογικό Έργο Κρήτης 4: Πρακτικά Της 4ης
Συνάντησης, Ρέθυμνο, 24-27 Νοεμβρίου 2016</em>, edited by Pavlina
Karanastasi, Anastasia Tzigounaki, and Christina Tsigonaki. Vol. 2.
Αρχαιολογικό Έργο Κρήτης 4. Rethymno: Eforia Archaeotaton Rethymnou. <a
href="https://search.worldcat.org">https://search.worldcat.org</a>.
</div>
<div id="ref-Bonetto2010" class="csl-entry" role="listitem">
Bonetto, Jacopo, Andrea Raffaele Ghiotto, Simone Berto, S. Cespa,
Giovanna Falezza, G. Furlan, M. G. Pavoni, and Arturo Zara. 2010.
<span>“Il tempio romano.”</span> <em>Quaderni Norensi</em> 3: 161–208.
</div>
<div id="ref-Bonetto2009-1" class="csl-entry" role="listitem">
Bonetto, Jacopo, Andrea Raffaele Ghiotto, Marta Novello, and Giovanna
Falezza, eds. 2009. <span>“Il tempio del foro.”</span> In <em>Nora, il
foro romano: storia di un’area urbana dall’età fenicia alla tarda
antichità, 1997-2006</em>, 375–453. Scavi di Nora 1. Padova; Cagliari:
Dipartimento di Archeologia, Università degli Studi di Padova ;
Ministero per i beni e le attività culturali, Soprintendenza per i beni
archeologici per le province di Cagliari e Oristano.
</div>
<div id="ref-BonghiJovino1973" class="csl-entry" role="listitem">
Bonghi Jovino, M. 1973. <span>“Il Grande Tempio e l’area
adiacente.”</span> In <em>Scavi di Luni: relazione preliminare delle
campagne di scavo 1970-1971</em>, edited by Antonio Frova, 653–92. Roma:
L’erma di Bretschneider.
</div>
<div id="ref-Bonifacio2000" class="csl-entry" role="listitem">
Bonifacio, Raffaella. 2000. <span>“Il santuario sannitico di Casalbore e
il suo materiale votivo.”</span> In <em>Studi sull’Italia dei
sanniti</em>, edited by Adriano La Regina, 33–35. Milano: Roma: Electa;
Ministero per i beni e le attività culturali, Soprintendenza
archeologica di Roma.
</div>
<div id="ref-Bonifacio2001" class="csl-entry" role="listitem">
———. 2001. <span>“I materiali votivi del santuario in località Macchia
Porcara di Casalbore.”</span> <em>Ostraka</em> 10: 207–24.
</div>
<div id="ref-Bonner1946" class="csl-entry" role="listitem">
Bonner, Campbell. 1946. <span>“Harpokrates (Zeus Kasios) of
Pelusium.”</span> <em>Hesperia: The Journal of the American School of
Classical Studies at Athens</em> 15 (1): 51–59. <a
href="https://doi.org/10.2307/146819">https://doi.org/10.2307/146819</a>.
</div>
<div id="ref-Bonzano2017" class="csl-entry" role="listitem">
Bonzano, Francesca. 2017. <em><em>Fanum Iunonis Melitense</em>: l’area
centrale del santuario di Tas-Silġ a Malta in età
tardo-repubblicana</em>. Malta. Scavi e ricerche della Missione
Archeologica Italiana 2. Bari: Edipuglia. <a
href="https://doi.org/10.4475/826">https://doi.org/10.4475/826</a>.
</div>
<div id="ref-Bookidis1997" class="csl-entry" role="listitem">
Bookidis, Nancy, and Ronald S. Stroud. 1997. <span>“The Sanctuary of