-
Notifications
You must be signed in to change notification settings - Fork 0
/
testToc.xhtml
1193 lines (1193 loc) · 41.8 KB
/
testToc.xhtml
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
<?xml version="1.0" encoding="utf-8"?>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:epub="http://www.idpf.org/2007/ops" epub:prefix="z3998: http://www.daisy.org/z3998/2012/vocab/structure/, se: https://standardebooks.org/vocab/1.0" xml:lang="en-US">
<head>
<title>Table of Contents</title>
</head>
<body epub:type="frontmatter">
<nav epub:type="toc">
<h2 epub:type="title">Table of Contents</h2>
<ol>
<li>
<a href="text/titlepage.xhtml">Titlepage</a>
</li>
<li>
<a href="text/imprint.xhtml">Imprint</a>
</li>
<li>
<a href="text/preface-1.xhtml">Publishers’ Preface</a>
</li>
<li>
<a href="text/preface-2.xhtml">Author’s Preface</a>
</li>
<li>
<a href="text/halftitle.xhtml">Bulfinch’s Mythology</a>
<ol>
<li>
<a href="text/part-1.xhtml">Stories of Gods and Heroes</a>
<ol>
<li>
<a href="text/chapter-1-1.xhtml"><span epub:type="z3998:roman">I</span>: Introduction</a>
<ol>
<li>
<a href="text/chapter-1-1.xhtml#chapter-1-1-1">Roman Divinities</a>
</li>
</ol>
</li>
<li>
<a href="text/chapter-1-2.xhtml"><span epub:type="z3998:roman">II</span>: Prometheus and Pandora</a>
</li>
<li>
<a href="text/chapter-1-3.xhtml"><span epub:type="z3998:roman">III</span>: Apollo and Daphne—Pyramus and Thisbe—Cephalus and Procris</a>
<ol>
<li>
<a href="text/chapter-1-3.xhtml#chapter-1-3-1">Apollo and Daphne</a>
</li>
<li>
<a href="text/chapter-1-3.xhtml#chapter-1-3-2">Pyramus and Thisbe</a>
</li>
<li>
<a href="text/chapter-1-3.xhtml#chapter-1-3-3">Cephalus and Procris</a>
</li>
</ol>
</li>
<li>
<a href="text/chapter-1-4.xhtml"><span epub:type="z3998:roman">IV</span>: Juno and Her Rivals, Io and Callisto—Diana and Actaeon—Latona and the Rustics</a>
<ol>
<li>
<a href="text/chapter-1-4.xhtml#chapter-1-4-1">Callisto</a>
</li>
<li>
<a href="text/chapter-1-4.xhtml#chapter-1-4-2">Diana and Actaeon</a>
</li>
<li>
<a href="text/chapter-1-4.xhtml#chapter-1-4-3">Latona and the Rustics</a>
</li>
</ol>
</li>
<li>
<a href="text/chapter-1-5.xhtml"><span epub:type="z3998:roman">V</span>: Phaëton</a>
</li>
<li>
<a href="text/chapter-1-6.xhtml"><span epub:type="z3998:roman">VI</span>: Midas—Baucis and Philemon</a>
<ol>
<li>
<a href="text/chapter-1-6.xhtml#chapter-1-6-1">Baucis and Philemon</a>
</li>
</ol>
</li>
<li>
<a href="text/chapter-1-7.xhtml"><span epub:type="z3998:roman">VII</span>: Proserpine—Glaucus and Scylla</a>
<ol>
<li>
<a href="text/chapter-1-7.xhtml#chapter-1-7-1">Glaucus and Scylla</a>
</li>
</ol>
</li>
<li>
<a href="text/chapter-1-8.xhtml"><span epub:type="z3998:roman">VIII</span>: Pygmalion—Dryope—Venus and Adonis—Apollo and Hyacinthus</a>
<ol>
<li>
<a href="text/chapter-1-8.xhtml#chapter-1-8-1">Dryope</a>
</li>
<li>
<a href="text/chapter-1-8.xhtml#chapter-1-8-2">Venus and Adonis</a>
</li>
<li>
<a href="text/chapter-1-8.xhtml#chapter-1-8-3">Apollo and Hyacinthus</a>
</li>
</ol>
</li>
<li>
<a href="text/chapter-1-9.xhtml"><span epub:type="z3998:roman">IX</span>: Ceyx and Halcyone: or, the Halcyon Birds</a>
</li>
<li>
<a href="text/chapter-1-10.xhtml"><span epub:type="z3998:roman">X</span>: Vertumnus and Pomona</a>
</li>
<li>
<a href="text/chapter-1-11.xhtml"><span epub:type="z3998:roman">XI</span>: Cupid and Psyche</a>
</li>
<li>
<a href="text/chapter-1-12.xhtml"><span epub:type="z3998:roman">XII</span>: Cadmus—The Myrmidons</a>
<ol>
<li>
<a href="text/chapter-1-12.xhtml#chapter-1-12-1">The Myrmidons</a>
</li>
</ol>
</li>
<li>
<a href="text/chapter-1-13.xhtml"><span epub:type="z3998:roman">XIII</span>: Nisus and Scylla—Echo and Narcissus—Clytie—Hero and Leander</a>
<ol>
<li>
<a href="text/chapter-1-13.xhtml#chapter-1-13-1">Nisus and Scylla</a>
</li>
<li>
<a href="text/chapter-1-13.xhtml#chapter-1-13-2">Echo and Narcissus</a>
</li>
<li>
<a href="text/chapter-1-13.xhtml#chapter-1-13-3">Clytie</a>
</li>
<li>
<a href="text/chapter-1-13.xhtml#chapter-1-13-4">Hero and Leander</a>
</li>
</ol>
</li>
<li>
<a href="text/chapter-1-14.xhtml"><span epub:type="z3998:roman">XIV</span>: Minerva—Niobe</a>
<ol>
<li>
<a href="text/chapter-1-14.xhtml#chapter-1-14-1">Minerva</a>
</li>
<li>
<a href="text/chapter-1-14.xhtml#chapter-1-14-2">Niobe</a>
</li>
</ol>
</li>
<li>
<a href="text/chapter-1-15.xhtml"><span epub:type="z3998:roman">XV</span>: The Graeae or Gray-Maids—Perseus—Medusa—Atlas—Andromeda</a>
<ol>
<li>
<a href="text/chapter-1-15.xhtml#chapter-1-15-1">The Graeae and the Gorgons</a>
</li>
<li>
<a href="text/chapter-1-15.xhtml#chapter-1-15-2">Perseus and Medusa</a>
</li>
<li>
<a href="text/chapter-1-15.xhtml#chapter-1-15-3">Perseus and Atlas</a>
</li>
<li>
<a href="text/chapter-1-15.xhtml#chapter-1-15-4">The Sea-Monster</a>
</li>
<li>
<a href="text/chapter-1-15.xhtml#chapter-1-15-5">The Wedding Feast</a>
</li>
</ol>
</li>
<li>
<a href="text/chapter-1-16.xhtml"><span epub:type="z3998:roman">XVI</span>: Monsters</a>
<ol>
<li>
<a href="text/chapter-1-16.xhtml#chapter-1-16-1">Giants, Sphinx, Pegasus and Chimaera, Centaurs, Griffin, and Pygmies</a>
</li>
<li>
<a href="text/chapter-1-16.xhtml#chapter-1-16-2">The Sphinx</a>
</li>
<li>
<a href="text/chapter-1-16.xhtml#chapter-1-16-3">Pegasus and the Chimaera</a>
</li>
<li>
<a href="text/chapter-1-16.xhtml#chapter-1-16-4">The Centaurs</a>
</li>
<li>
<a href="text/chapter-1-16.xhtml#chapter-1-16-5">The Pygmies</a>
</li>
<li>
<a href="text/chapter-1-16.xhtml#chapter-1-16-6">The Griffin, or Gryphon</a>
</li>
</ol>
</li>
<li>
<a href="text/chapter-1-17.xhtml"><span epub:type="z3998:roman">XVII</span>: The Golden Fleece—Medea</a>
<ol>
<li>
<a href="text/chapter-1-17.xhtml#chapter-1-17-1">The Golden Fleece</a>
</li>
<li>
<a href="text/chapter-1-17.xhtml#chapter-1-17-2">Medea and Aeson</a>
</li>
</ol>
</li>
<li>
<a href="text/chapter-1-18.xhtml"><span epub:type="z3998:roman">XVIII</span>: Meleager and Atalanta</a>
<ol>
<li>
<a href="text/chapter-1-18.xhtml#chapter-1-18-1">Atalanta</a>
</li>
</ol>
</li>
<li>
<a href="text/chapter-1-19.xhtml"><span epub:type="z3998:roman">XIX</span>: Hercules—Hebe and Ganymede</a>
<ol>
<li>
<a href="text/chapter-1-19.xhtml#chapter-1-19-1">Hercules</a>
</li>
<li>
<a href="text/chapter-1-19.xhtml#chapter-1-19-2">Hebe and Ganymede</a>
</li>
</ol>
</li>
<li>
<a href="text/chapter-1-20.xhtml"><span epub:type="z3998:roman">XX</span>: Theseus—Daedalus—Castor and Pollux</a>
<ol>
<li>
<a href="text/chapter-1-20.xhtml#chapter-1-20-1">Theseus</a>
</li>
<li>
<a href="text/chapter-1-20.xhtml#chapter-1-20-2">Olympic and Other Games</a>
</li>
<li>
<a href="text/chapter-1-20.xhtml#chapter-1-20-3">Daedalus</a>
</li>
<li>
<a href="text/chapter-1-20.xhtml#chapter-1-20-4">Castor and Pollux</a>
</li>
</ol>
</li>
<li>
<a href="text/chapter-1-21.xhtml"><span epub:type="z3998:roman">XXI</span>: Bacchus—Ariadne</a>
<ol>
<li>
<a href="text/chapter-1-21.xhtml#chapter-1-21-1">Bacchus</a>
</li>
<li>
<a href="text/chapter-1-21.xhtml#chapter-1-21-2">Ariadne</a>
</li>
</ol>
</li>
<li>
<a href="text/chapter-1-22.xhtml"><span epub:type="z3998:roman">XXII</span>: The Rural Deities—Erisichthon—Rhoecus—The Water Deities—Camenae—Winds</a>
<ol>
<li>
<a href="text/chapter-1-22.xhtml#chapter-1-22-1">The Rural Deities</a>
</li>
<li>
<a href="text/chapter-1-22.xhtml#chapter-1-22-2">Erisichthon</a>
</li>
<li>
<a href="text/chapter-1-22.xhtml#chapter-1-22-3">Rhoecus</a>
</li>
<li>
<a href="text/chapter-1-22.xhtml#chapter-1-22-4">The Water Deities</a>
</li>
<li>
<a href="text/chapter-1-22.xhtml#chapter-1-22-5">Neptune</a>
</li>
<li>
<a href="text/chapter-1-22.xhtml#chapter-1-22-6">Amphitrite</a>
</li>
<li>
<a href="text/chapter-1-22.xhtml#chapter-1-22-7">Nereus and Doris</a>
</li>
<li>
<a href="text/chapter-1-22.xhtml#chapter-1-22-8">Triton and Proteus</a>
</li>
<li>
<a href="text/chapter-1-22.xhtml#chapter-1-22-9">Thetis</a>
</li>
<li>
<a href="text/chapter-1-22.xhtml#chapter-1-22-10">Leucothea and Palaemon</a>
</li>
<li>
<a href="text/chapter-1-22.xhtml#chapter-1-22-11">The Camenae</a>
</li>
<li>
<a href="text/chapter-1-22.xhtml#chapter-1-22-12">The Winds</a>
</li>
</ol>
</li>
<li>
<a href="text/chapter-1-23.xhtml"><span epub:type="z3998:roman">XXIII</span>: Achelous and Hercules—Admetus and Alcestis—Antigone—Penelope</a>
<ol>
<li>
<a href="text/chapter-1-23.xhtml#chapter-1-23-1">Achelous and Hercules</a>
</li>
<li>
<a href="text/chapter-1-23.xhtml#chapter-1-23-2">Admetus and Alcestis</a>
</li>
<li>
<a href="text/chapter-1-23.xhtml#chapter-1-23-3">Antigone</a>
</li>
<li>
<a href="text/chapter-1-23.xhtml#chapter-1-23-4">Penelope</a>
</li>
</ol>
</li>
<li>
<a href="text/chapter-1-24.xhtml"><span epub:type="z3998:roman">XXIV</span>: Orpheus and Eurydice—Aristaeus—Amphion—Linus—Thamyris—Marsyas—Melampus—Musaeus</a>
<ol>
<li>
<a href="text/chapter-1-24.xhtml#chapter-1-24-1">Orpheus and Eurydice</a>
</li>
<li>
<a href="text/chapter-1-24.xhtml#chapter-1-24-2">Aristaeus, the Beekeeper</a>
</li>
<li>
<a href="text/chapter-1-24.xhtml#chapter-1-24-3">Amphion</a>
</li>
<li>
<a href="text/chapter-1-24.xhtml#chapter-1-24-4">Linus</a>
</li>
<li>
<a href="text/chapter-1-24.xhtml#chapter-1-24-5">Thamyris</a>
</li>
<li>
<a href="text/chapter-1-24.xhtml#chapter-1-24-6">Marsyas</a>
</li>
<li>
<a href="text/chapter-1-24.xhtml#chapter-1-24-7">Melampus</a>
</li>
<li>
<a href="text/chapter-1-24.xhtml#chapter-1-24-8">Musaeus</a>
</li>
</ol>
</li>
<li>
<a href="text/chapter-1-25.xhtml"><span epub:type="z3998:roman">XXV</span>: Arion—Ibycus—Simonides—Sappho</a>
<ol>
<li>
<a href="text/chapter-1-25.xhtml#chapter-1-25-1">Arion</a>
</li>
<li>
<a href="text/chapter-1-25.xhtml#chapter-1-25-2">Ibycus</a>
</li>
<li>
<a href="text/chapter-1-25.xhtml#chapter-1-25-3">Simonides</a>
</li>
<li>
<a href="text/chapter-1-25.xhtml#chapter-1-25-4">Sappho</a>
</li>
</ol>
</li>
<li>
<a href="text/chapter-1-26.xhtml"><span epub:type="z3998:roman">XXVI</span>: Endymion—Orion—Aurora and Tithonus—Acis and Galatea</a>
<ol>
<li>
<a href="text/chapter-1-26.xhtml#chapter-1-26-1">Diana and Endymion</a>
</li>
<li>
<a href="text/chapter-1-26.xhtml#chapter-1-26-2">Orion</a>
</li>
<li>
<a href="text/chapter-1-26.xhtml#chapter-1-26-3">Aurora and Tithonus</a>
</li>
<li>
<a href="text/chapter-1-26.xhtml#chapter-1-26-4">Acis and Galatea</a>
</li>
</ol>
</li>
<li>
<a href="text/chapter-1-27.xhtml"><span epub:type="z3998:roman">XXVII</span>: The Trojan War</a>
<ol>
<li>
<a href="text/chapter-1-27.xhtml#chapter-1-27-1">The Iliad</a>
</li>
</ol>
</li>
<li>
<a href="text/chapter-1-28.xhtml"><span epub:type="z3998:roman">XXVIII</span>: The Fall of Troy—Return of the Greeks—Orestes and Electra</a>
<ol>
<li>
<a href="text/chapter-1-28.xhtml#chapter-1-28-1">The Fall of Troy</a>
</li>
<li>
<a href="text/chapter-1-28.xhtml#chapter-1-28-2">Menelaus and Helen</a>
</li>
<li>
<a href="text/chapter-1-28.xhtml#chapter-1-28-3">Agamemnon, Orestes, and Electra</a>
</li>
<li>
<a href="text/chapter-1-28.xhtml#chapter-1-28-4">Troy</a>
</li>
</ol>
</li>
<li>
<a href="text/chapter-1-29.xhtml"><span epub:type="z3998:roman">XXIX</span>: Adventures of Ulysses—The Lotus-Eaters—Cyclopes—Circe—Sirens—Scylla and Charybdis—Calypso</a>
<ol>
<li>
<a href="text/chapter-1-29.xhtml#chapter-1-29-1">Return of Ulysses</a>
</li>
<li>
<a href="text/chapter-1-29.xhtml#chapter-1-29-2">The Laestrygonians</a>
</li>
<li>
<a href="text/chapter-1-29.xhtml#chapter-1-29-3">Scylla and Charybdis</a>
</li>
<li>
<a href="text/chapter-1-29.xhtml#chapter-1-29-4">Calypso</a>
</li>
</ol>
</li>
<li>
<a href="text/chapter-1-30.xhtml"><span epub:type="z3998:roman">XXX</span>: The Phaeacians—Fate of the Suitors</a>
<ol>
<li>
<a href="text/chapter-1-30.xhtml#chapter-1-30-1">The Phaeacians</a>
</li>
<li>
<a href="text/chapter-1-30.xhtml#chapter-1-30-2">Fate of the Suitors</a>
</li>
</ol>
</li>
<li>
<a href="text/chapter-1-31.xhtml"><span epub:type="z3998:roman">XXXI</span>: Adventures of Aeneas—The Harpies—Dido—Palinurus</a>
<ol>
<li>
<a href="text/chapter-1-31.xhtml#chapter-1-31-1">Adventures of Aeneas</a>
</li>
<li>
<a href="text/chapter-1-31.xhtml#chapter-1-31-2">Dido</a>
</li>
<li>
<a href="text/chapter-1-31.xhtml#chapter-1-31-3">Palinurus</a>
</li>
</ol>
</li>
<li>
<a href="text/chapter-1-32.xhtml"><span epub:type="z3998:roman">XXXII</span>: The Infernal Regions—The Sibyl</a>
<ol>
<li>
<a href="text/chapter-1-32.xhtml#chapter-1-32-1">The Infernal Regions</a>
</li>
<li>
<a href="text/chapter-1-32.xhtml#chapter-1-32-2">Elysium</a>
</li>
<li>
<a href="text/chapter-1-32.xhtml#chapter-1-32-3">The Sibyl</a>
</li>
</ol>
</li>
<li>
<a href="text/chapter-1-33.xhtml"><span epub:type="z3998:roman">XXXIII</span>: Camilla—Evander—Nisus and Euryalus—Mezentius—Turnus</a>
<ol>
<li>
<a href="text/chapter-1-33.xhtml#chapter-1-33-1">Opening the Gates of Janus</a>
</li>
<li>
<a href="text/chapter-1-33.xhtml#chapter-1-33-2">Camilla</a>
</li>
<li>
<a href="text/chapter-1-33.xhtml#chapter-1-33-3">Evander</a>
</li>
<li>
<a href="text/chapter-1-33.xhtml#chapter-1-33-4">Infant Rome</a>
</li>
<li>
<a href="text/chapter-1-33.xhtml#chapter-1-33-5">Nisus and Euryalus</a>
</li>
<li>
<a href="text/chapter-1-33.xhtml#chapter-1-33-6">Mezentius</a>
</li>
<li>
<a href="text/chapter-1-33.xhtml#chapter-1-33-7">Pallas, Camilla, Turnus</a>
</li>
</ol>
</li>
<li>
<a href="text/chapter-1-34.xhtml"><span epub:type="z3998:roman">XXXIV</span>: Pythagoras—Egyptian Deities—Oracles</a>
<ol>
<li>
<a href="text/chapter-1-34.xhtml#chapter-1-34-1">Pythagoras</a>
</li>
<li>
<a href="text/chapter-1-34.xhtml#chapter-1-34-2">Sybaris and Crotona</a>
</li>
<li>
<a href="text/chapter-1-34.xhtml#chapter-1-34-3">Egyptian Deities</a>
</li>
<li>
<a href="text/chapter-1-34.xhtml#chapter-1-34-4">Myth of Osiris and Isis</a>
</li>
<li>
<a href="text/chapter-1-34.xhtml#chapter-1-34-5">Oracles</a>
</li>
<li>
<a href="text/chapter-1-34.xhtml#chapter-1-34-6">Oracle of Trophonius</a>
</li>
<li>
<a href="text/chapter-1-34.xhtml#chapter-1-34-7">Oracle of Aesculapius</a>
</li>
<li>
<a href="text/chapter-1-34.xhtml#chapter-1-34-8">Oracle of Apis</a>
</li>
</ol>
</li>
<li>
<a href="text/chapter-1-35.xhtml"><span epub:type="z3998:roman">XXXV</span>: Origin of Mythology—Statues of Gods and Goddesses—Poets of Mythology</a>
<ol>
<li>
<a href="text/chapter-1-35.xhtml#chapter-1-35-1">Origin of Mythology</a>
</li>
<li>
<a href="text/chapter-1-35.xhtml#chapter-1-35-2">Statues of the Gods</a>
</li>
<li>
<a href="text/chapter-1-35.xhtml#chapter-1-35-3">The Olympian Jupiter</a>
</li>
<li>
<a href="text/chapter-1-35.xhtml#chapter-1-35-4">The Minerva of the Parthenon</a>
</li>
<li>
<a href="text/chapter-1-35.xhtml#chapter-1-35-5">The Venus de Medici</a>
</li>
<li>
<a href="text/chapter-1-35.xhtml#chapter-1-35-6">The Apollo Belvedere</a>
</li>
<li>
<a href="text/chapter-1-35.xhtml#chapter-1-35-7">The Diana a La Biche</a>
</li>
<li>
<a href="text/chapter-1-35.xhtml#chapter-1-35-8">The Poets of Mythology</a>
</li>
<li>
<a href="text/chapter-1-35.xhtml#chapter-1-35-9">Virgil</a>
</li>
<li>
<a href="text/chapter-1-35.xhtml#chapter-1-35-10">Ovid</a>
</li>
</ol>
</li>
<li>
<a href="text/chapter-1-36.xhtml"><span epub:type="z3998:roman">XXXVI</span>: Modern Monsters—The Phoenix—Basilisk—Unicorn—Salamander</a>
<ol>
<li>
<a href="text/chapter-1-36.xhtml#chapter-1-36-1">Modern Monsters</a>
</li>
<li>
<a href="text/chapter-1-36.xhtml#chapter-1-36-2">The Phoenix</a>
</li>
<li>
<a href="text/chapter-1-36.xhtml#chapter-1-36-3">The Cockatrice, or Basilisk</a>
</li>
<li>
<a href="text/chapter-1-36.xhtml#chapter-1-36-4">The Unicorn</a>
</li>
<li>
<a href="text/chapter-1-36.xhtml#chapter-1-36-5">The Salamander</a>
</li>
</ol>
</li>
<li>
<a href="text/chapter-1-37.xhtml"><span epub:type="z3998:roman">XXXVII</span>: Eastern Mythology—Zoroaster—Hindu Mythology—Castes—Buddha—Grand Lama</a>
<ol>
<li>
<a href="text/chapter-1-37.xhtml#chapter-1-37-1">Zoroaster</a>
</li>
<li>
<a href="text/chapter-1-37.xhtml#chapter-1-37-2">Hindu Mythology</a>
</li>
<li>
<a href="text/chapter-1-37.xhtml#chapter-1-37-3">Vishnu</a>
</li>
<li>
<a href="text/chapter-1-37.xhtml#chapter-1-37-4">Siva</a>
</li>
<li>
<a href="text/chapter-1-37.xhtml#chapter-1-37-5">Juggernaut</a>
</li>
<li>
<a href="text/chapter-1-37.xhtml#chapter-1-37-6">Castes</a>
</li>
<li>
<a href="text/chapter-1-37.xhtml#chapter-1-37-7">Buddha</a>
</li>
<li>
<a href="text/chapter-1-37.xhtml#chapter-1-37-8">The Grand Lama</a>
</li>
<li>
<a href="text/chapter-1-37.xhtml#chapter-1-37-9">Prester John</a>
</li>
</ol>
</li>
<li>
<a href="text/chapter-1-38.xhtml"><span epub:type="z3998:roman">XXXVIII</span>: Northern Mythology—Valhalla—The Valkyrior</a>
<ol>
<li>
<a href="text/chapter-1-38.xhtml#chapter-1-38-1">Northern Mythology</a>
</li>
<li>
<a href="text/chapter-1-38.xhtml#chapter-1-38-2">Of the Joys of Valhalla</a>
</li>
<li>
<a href="text/chapter-1-38.xhtml#chapter-1-38-3">The Valkyrie</a>
</li>
<li>
<a href="text/chapter-1-38.xhtml#chapter-1-38-4">Of Thor and the Other Gods</a>
</li>
<li>
<a href="text/chapter-1-38.xhtml#chapter-1-38-5">Of Loki and His Progeny</a>
</li>
<li>
<a href="text/chapter-1-38.xhtml#chapter-1-38-6">How Thor Paid the Mountain Giant His Wages</a>
</li>
<li>
<a href="text/chapter-1-38.xhtml#chapter-1-38-7">The Recovery of the Hammer</a>
</li>
</ol>
</li>
<li>
<a href="text/chapter-1-39.xhtml"><span epub:type="z3998:roman">XXXIX</span>: Thor’s Visit to Jotunheim</a>
<ol>
<li>
<a href="text/chapter-1-39.xhtml#chapter-1-39-1">Thor’s Visit to Jotunheim, the Giant’s Country</a>
</li>
</ol>
</li>
<li>
<a href="text/chapter-1-40.xhtml"><span epub:type="z3998:roman">XL</span>: The Death of Baldur—The Elves—Runic Letters—Iceland—Teutonic Mythology—Nibelungen Lied</a>
<ol>
<li>
<a href="text/chapter-1-40.xhtml#chapter-1-40-1">The Death of Baldur</a>
</li>
<li>
<a href="text/chapter-1-40.xhtml#chapter-1-40-2">The Funeral of Baldur</a>
</li>
<li>
<a href="text/chapter-1-40.xhtml#chapter-1-40-3">The Elves</a>
</li>
<li>
<a href="text/chapter-1-40.xhtml#chapter-1-40-4">Ragnarok, the Twilight of the Gods</a>
</li>
<li>
<a href="text/chapter-1-40.xhtml#chapter-1-40-5">Runic Letters</a>
</li>
<li>
<a href="text/chapter-1-40.xhtml#chapter-1-40-6">The Skalds</a>
</li>
<li>
<a href="text/chapter-1-40.xhtml#chapter-1-40-7">Iceland</a>
</li>
<li>
<a href="text/chapter-1-40.xhtml#chapter-1-40-8">Teutonic Mythology</a>
</li>
<li>
<a href="text/chapter-1-40.xhtml#chapter-1-40-9">The Nibelungen Lied</a>
</li>
<li>
<a href="text/chapter-1-40.xhtml#chapter-1-40-10">The Nibelungen Hoard</a>
</li>
<li>
<a href="text/chapter-1-40.xhtml#chapter-1-40-11">Wagner’s Nibelungen Ring</a>
</li>
</ol>
</li>
<li>
<a href="text/chapter-1-41.xhtml"><span epub:type="z3998:roman">XLI</span>: The Druids—Iona</a>
<ol>
<li>
<a href="text/chapter-1-41.xhtml#chapter-1-41-1">Druids</a>
</li>
<li>
<a href="text/chapter-1-41.xhtml#chapter-1-41-2">Iona</a>
</li>
</ol>
</li>
</ol>
</li>
<li>
<a href="text/part-2.xhtml">King Arthur and His Knights</a>
<ol>
<li>
<a href="text/chapter-2-1.xhtml"><span epub:type="z3998:roman">I</span>: Introduction</a>
<ol>
<li>
<a href="text/chapter-2-1.xhtml#chapter-2-1-1">The Training of a Knight</a>
</li>
<li>
<a href="text/chapter-2-1.xhtml#chapter-2-1-2">Freemen, Villains, Serfs, and Clerks</a>
</li>
<li>
<a href="text/chapter-2-1.xhtml#chapter-2-1-3">Tournaments</a>
</li>
<li>
<a href="text/chapter-2-1.xhtml#chapter-2-1-4">Mail Armor</a>
</li>
<li>
<a href="text/chapter-2-1.xhtml#chapter-2-1-5">Helmets</a>
</li>
<li>
<a href="text/chapter-2-1.xhtml#chapter-2-1-6">Romances</a>
</li>
<li>
<a href="text/chapter-2-1.xhtml#chapter-2-1-7">Metrical Romances</a>
</li>
</ol>
</li>
<li>
<a href="text/chapter-2-2.xhtml"><span epub:type="z3998:roman">II</span>: The Mythical History of England</a>
<ol>
<li>
<a href="text/chapter-2-2.xhtml#chapter-2-2-1">Bladud</a>
</li>
<li>
<a href="text/chapter-2-2.xhtml#chapter-2-2-2">Leir</a>
</li>
<li>
<a href="text/chapter-2-2.xhtml#chapter-2-2-3">Ferrex and Porrex</a>
</li>
<li>
<a href="text/chapter-2-2.xhtml#chapter-2-2-4">Dunwallo Molmutius</a>
</li>
<li>
<a href="text/chapter-2-2.xhtml#chapter-2-2-5">Brennus and Belinus,</a>
</li>
<li>
<a href="text/chapter-2-2.xhtml#chapter-2-2-6">Elidure</a>
</li>
<li>
<a href="text/chapter-2-2.xhtml#chapter-2-2-7">Lud</a>
</li>
<li>
<a href="text/chapter-2-2.xhtml#chapter-2-2-8">Cassibellaunus</a>
</li>
<li>
<a href="text/chapter-2-2.xhtml#chapter-2-2-9">Kymbelinus, or Cymbeline</a>
</li>
<li>
<a href="text/chapter-2-2.xhtml#chapter-2-2-10">Armorica</a>
</li>
</ol>
</li>
<li>
<a href="text/chapter-2-3.xhtml"><span epub:type="z3998:roman">III</span>: Merlin</a>
</li>
<li>
<a href="text/chapter-2-4.xhtml"><span epub:type="z3998:roman">IV</span>: Arthur</a>
<ol>
<li>
<a href="text/chapter-2-4.xhtml#chapter-2-4-1">King Arthur</a>
</li>
<li>
<a href="text/chapter-2-4.xhtml#chapter-2-4-2">Arthur Chosen King</a>
</li>
<li>
<a href="text/chapter-2-4.xhtml#chapter-2-4-3">Guenever</a>
</li>
</ol>
</li>
<li>
<a href="text/chapter-2-5.xhtml"><span epub:type="z3998:roman">V</span>: Arthur (Continued)</a>
<ol>
<li>
<a href="text/chapter-2-5.xhtml#chapter-2-5-1">King Arthur Slays the Giant of St. Michael’s Mount</a>
</li>
<li>
<a href="text/chapter-2-5.xhtml#chapter-2-5-2">King Arthur Gets a Sword from the Lady of the Lake</a>
</li>
</ol>
</li>
<li>
<a href="text/chapter-2-6.xhtml"><span epub:type="z3998:roman">VI</span>: Sir Gawain</a>
<ol>
<li>
<a href="text/chapter-2-6.xhtml#chapter-2-6-1">Sir Gawain’s Marriage</a>
</li>
</ol>
</li>
<li>
<a href="text/chapter-2-7.xhtml"><span epub:type="z3998:roman">VII</span>: Caradoc Briefbras; or, Caradoc with the Shrunken Arm</a>
</li>
<li>
<a href="text/chapter-2-8.xhtml"><span epub:type="z3998:roman">VIII</span>: Launcelot of the Lake</a>
<ol>
<li>
<a href="text/chapter-2-8.xhtml#chapter-2-8-1">Sir Launcelot</a>
</li>
</ol>
</li>
<li>
<a href="text/chapter-2-9.xhtml"><span epub:type="z3998:roman">IX</span>: The Adventure of the Cart</a>
</li>
<li>
<a href="text/chapter-2-10.xhtml"><span epub:type="z3998:roman">X</span>: The Lady of Shalott</a>
</li>
<li>
<a href="text/chapter-2-11.xhtml"><span epub:type="z3998:roman">XI</span>: Queen Guenever’s Peril</a>
</li>
<li>
<a href="text/chapter-2-12.xhtml"><span epub:type="z3998:roman">XII</span>: Tristram and Isoude</a>
</li>
<li>
<a href="text/chapter-2-13.xhtml"><span epub:type="z3998:roman">XIII</span>: Tristram and Isoude (Continued)</a>
</li>
<li>
<a href="text/chapter-2-14.xhtml"><span epub:type="z3998:roman">XIV</span>: Sir Tristram’s Battle with Sir Launcelot</a>
<ol>
<li>
<a href="text/chapter-2-14.xhtml#chapter-2-14-1">Sir Tristram as a Sportsman</a>
</li>
</ol>
</li>
<li>
<a href="text/chapter-2-15.xhtml"><span epub:type="z3998:roman">XV</span>: The Round Table</a>
</li>
<li>
<a href="text/chapter-2-16.xhtml"><span epub:type="z3998:roman">XVI</span>: Sir Palamedes</a>
</li>
<li>
<a href="text/chapter-2-17.xhtml"><span epub:type="z3998:roman">XVII</span>: Sir Tristram</a>
</li>
<li>
<a href="text/chapter-2-18.xhtml"><span epub:type="z3998:roman">XVIII</span>: Perceval</a>
</li>
<li>
<a href="text/chapter-2-19.xhtml"><span epub:type="z3998:roman">XIX</span>: The Sangreal, or Holy Graal</a>
<ol>
<li>
<a href="text/chapter-2-19.xhtml#chapter-2-19-1">Sir Galahad</a>
</li>
<li>
<a href="text/chapter-2-19.xhtml#chapter-2-19-2">Sir Gawain</a>
</li>
</ol>
</li>
<li>
<a href="text/chapter-2-20.xhtml"><span epub:type="z3998:roman">XX</span>: The Sangreal (Continued)</a>
<ol>
<li>
<a href="text/chapter-2-20.xhtml#chapter-2-20-1">Sir Launcelot</a>
</li>
<li>
<a href="text/chapter-2-20.xhtml#chapter-2-20-2">Sir Perceval</a>
</li>
</ol>
</li>
<li>
<a href="text/chapter-2-21.xhtml"><span epub:type="z3998:roman">XXI</span>: The Sangreal (Continued)</a>
<ol>
<li>
<a href="text/chapter-2-21.xhtml#chapter-2-21-1">Sir Bohort</a>
</li>
<li>
<a href="text/chapter-2-21.xhtml#chapter-2-21-2">Sir Launcelot (Resumed)</a>
</li>
<li>
<a href="text/chapter-2-21.xhtml#chapter-2-21-3">Sir Galahad</a>
</li>
</ol>
</li>
<li>
<a href="text/chapter-2-22.xhtml"><span epub:type="z3998:roman">XXII</span>: Sir Agrivain’s Treason</a>
</li>
<li>
<a href="text/chapter-2-23.xhtml"><span epub:type="z3998:roman">XXIII</span>: Morte D’arthur</a>
</li>
</ol>
</li>
<li>
<a href="text/part-3.xhtml">The Mabinogeon</a>
<ol>
<li>
<a href="text/part-3.xhtml#part-3-introduction">Introductory Note</a>
</li>
<li>
<a href="text/chapter-3-1.xhtml"><span epub:type="z3998:roman">I</span>: The Britons</a>
<ol>
<li>
<a href="text/chapter-3-1.xhtml#chapter-3-1-1">The Welsh Language and Literature</a>
</li>
<li>
<a href="text/chapter-3-1.xhtml#chapter-3-1-2">The Welsh Bards</a>
</li>
<li>
<a href="text/chapter-3-1.xhtml#chapter-3-1-3">The Triads</a>
</li>
</ol>
</li>
<li>
<a href="text/chapter-3-2.xhtml"><span epub:type="z3998:roman">II</span>: The Lady of the Fountain</a>
<ol>
<li>
<a href="text/chapter-3-2.xhtml#chapter-3-2-1">Kynon’s Adventure</a>
</li>
</ol>
</li>
<li>
<a href="text/chapter-3-3.xhtml"><span epub:type="z3998:roman">III</span>: The Lady of the Fountain (Continued)</a>
<ol>
<li>
<a href="text/chapter-3-3.xhtml#chapter-3-3-1">Owain’s Adventure</a>
</li>
</ol>
</li>
<li>
<a href="text/chapter-3-4.xhtml"><span epub:type="z3998:roman">IV</span>: The Lady of the Fountain</a>
<ol>
<li>
<a href="text/chapter-3-4.xhtml#chapter-3-4-1">Gawain’s Adventure</a>
</li>
<li>
<a href="text/chapter-3-4.xhtml#chapter-3-4-2">The Adventure of the Lion</a>
</li>
</ol>
</li>
<li>
<a href="text/chapter-3-5.xhtml"><span epub:type="z3998:roman">V</span>: Geraint, the Son of Erbin</a>
</li>
<li>
<a href="text/chapter-3-6.xhtml"><span epub:type="z3998:roman">VI</span>: Geraint, the Son of Erbin (Continued)</a>
</li>
<li>
<a href="text/chapter-3-7.xhtml"><span epub:type="z3998:roman">VII</span>: Geraint, the Son of Erbin (Continued)</a>
</li>
<li>
<a href="text/chapter-3-8.xhtml"><span epub:type="z3998:roman">VIII</span>: Pwyll, Prince of Dyved</a>
</li>
<li>
<a href="text/chapter-3-9.xhtml"><span epub:type="z3998:roman">IX</span>: Branwen, the Daughter of Llyr</a>
</li>
<li>
<a href="text/chapter-3-10.xhtml"><span epub:type="z3998:roman">X</span>: Manawyddan</a>
</li>
<li>
<a href="text/chapter-3-11.xhtml"><span epub:type="z3998:roman">XI</span>: Kilwich and Olwen</a>
</li>
<li>
<a href="text/chapter-3-12.xhtml"><span epub:type="z3998:roman">XII</span>: Kilwich and Olwen (Continued)</a>
</li>
<li>
<a href="text/chapter-3-13.xhtml"><span epub:type="z3998:roman">XIII</span>: Taliesin</a>
</li>
</ol>
</li>
<li>
<a href="text/part-4.xhtml">Hero Myths of the British Isles</a>
<ol>
<li>
<a href="text/chapter-4-1.xhtml">Beowulf</a>
</li>
<li>
<a href="text/chapter-4-2.xhtml">Cuchulain, Champion of Ireland</a>
</li>
<li>
<a href="text/chapter-4-3.xhtml">Hereward the Wake</a>
</li>
<li>
<a href="text/chapter-4-4.xhtml">Robin Hood</a>
</li>
</ol>
</li>
<li>
<a href="text/part-5.xhtml">Legends of Charlemagne</a>
<ol>
<li>
<a href="text/chapter-5-1.xhtml">Introduction</a>
</li>
<li>
<a href="text/chapter-5-2.xhtml">The Peers, or Paladins</a>
<ol>
<li>
<a href="text/chapter-5-2.xhtml#chapter-5-2-1">Orlando</a>
</li>
<li>
<a href="text/chapter-5-2.xhtml#chapter-5-2-2">Roland and Ferragus</a>
</li>
<li>
<a href="text/chapter-5-2.xhtml#chapter-5-2-3">A Roland for an Oliver</a>
</li>
<li>
<a href="text/chapter-5-2.xhtml#chapter-5-2-4">Rinaldo</a>
</li>
</ol>
</li>
<li>
<a href="text/chapter-5-3.xhtml">The Tournament</a>
</li>
<li>
<a href="text/chapter-5-4.xhtml">The Siege of Albracca</a>
</li>
<li>
<a href="text/chapter-5-5.xhtml">Adventures of Rinaldo and Orlando</a>
</li>
<li>
<a href="text/chapter-5-6.xhtml">The Invasion of France</a>
</li>
<li>
<a href="text/chapter-5-7.xhtml">The Invasion of France (Continued)</a>
</li>
<li>
<a href="text/chapter-5-8.xhtml">Bradamante and Rogero</a>
</li>
<li>
<a href="text/chapter-5-9.xhtml">Astolpho and the Enchantress</a>