forked from Chartes-TNAH/patrologia_latina-dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathedition_metadata_sorted.csv
We can make this file beautiful and searchable if this error is corrected: It looks like row 2 should actually have 2 columns, instead of 1 in line 1.
1459 lines (1459 loc) · 140 KB
/
edition_metadata_sorted.csv
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
PL3_0_PASS.xml None None None None None section, p
PL3_1_UNKN.xml None None None None None p
PL3_2_CHRO.xml None None None None None chapter, section
PL3_3_ANNO.xml None None None None None section
PL3_4_NOTI.xml Notitia None None Jacques Paul Migne 1865 section, p
PL3_5_UNKN.xml Epistolae None None Jacques Paul Migne 1865 section, p
PL3_6_UNKN.xml AD S. CORNELIUM APPENDICES None None Jacques Paul Migne 1865 appendix, section, p
PL3_7_UNKN.xml Tempore Cornelii Papae , S. CYPRIANI EPIST. SYNOD. DE LAPSIS None None Migne 1865 section, p
PL3_8_NOVA.xml De Trinitate None None None 1865 chapter
PL3_9_NOVA.xml Epistola De Cibis Judaicis None None None 1865 chapter
PL3_10_UNK.xml Epistola Ad Cyprianam Papam None None None 1865 chapter
PL3_11_UNK.xml Epistola Ad Lucium Papam Reversum None None None 1865 chapter
PL3_12_APP.xml Epistola Ad Galliae Atque Hispaniae Episcopos None None None 1865 chapter, p
PL3_13_DEC.xml Decreta Ex Gratiano Desumpta None None None 1865 section
PL3_14_ANN.xml Notitia ex Libro Pontificali Damasi Papae None None None 1865 section
PL3_15_NOT.xml Notitia epistolarum non exstantium quae ad Stephanum attinent None None None 1865 chapter, section, p
PL3_16_EPI.xml Epistolae Quae ad SS Stephanum I Papam Attinent None None None 1865 section
PL3_17_UNK.xml Epistolae Decretales SS Stephano Adscriptae None None None 1865 letter, section, p
PL3_18_ACT.xml Decretoriae Sententiae None None None 1865 section
PL3_19_UNK.xml Concilium Romanum Sub SS Stephano I Celebratum None None Migne 1865 work
PL3_20_UNK.xml De Infantibus Baptizandis None None None 1865 section
PL3_21_CAR.xml De Basilide et Martialle Hispaniae Episcopis Libellaticis None None None 1865 section, p
PL3_22_ANN.xml De Baptismo Primum None None None 1865 section, p
PL3_23_ANN.xml Quod de Baptismo Secundum Est None None None 1865 section
PL3_24_ANN.xml Quod de Baptismo Tertium Est None None None 1865 section
PL3_25_UNK.xml Bollandistarum Animadversiones None None Migne 1865 work
PL3_26_VII.xml None None None None None section
PL3_27_UNK.xml None None None None None No citable units founds
PL3_28_UNK.xml Epistola Dionysii Alexandrini episcopi ad Stephanum papam fragmentum None None Migne 1865 letter
PL3_29_UNK.xml Epistola S. Cypriani ad Quintum None None None 1865 section
PL3_30_ANN.xml Epistola ad Jovianum None None None 1865 section
PL3_31_UNK.xml Epistola S. Cypriani ad Pompeium contra epistolam Stephani None None None 1865 section
PL3_32_EPI.xml Epistola S. Cypriani ad Magnum None None None 1865 section
PL3_33_CON.xml Concilium Iconiense contra Cataphrygas None None None 1865 chapter, section, p
PL3_34_ANO.xml Liber de rebaptismate None None None 1865 section
PL3_35_UNK.xml None None None None None No citable units founds
PL3_36_ANO.xml None None None None None p
PL3_37_UNK.xml Vita et passio S. Caecilii Cypriani None None None 1865 chapter
PL3_38_ACT.xml Acta proconsularia Sancti Cypriani None None None 1865 section, p
PL3_39_APP.xml None None None None None No citable units founds
PL4_0_DE D.xml De Duodecim Abusionibus Saeculi Tractatus Adscriptus None Jacques Paul Migne Garnier 1865 section
PL4_1_ORAT.xml Oratio Antiocheni Quam Sub Die Passionis Suae Dixit Incerta None Jacques Paul Migne Garnier 1865 section
PL4_2_DE M.xml De Montibus Sina et Sion Tractatus Adscriptus None Jacques Paul Migne Garnier 1865 section
PL4_3_CŒNA.xml Coena Falso Inscripta None Jacques Paul Migne Garnier 1865 section
PL4_4_DE R_Deleted_textparts.xml De Revelatione Capitis Beati Joannis Baptistae Tractatus Incertus None Jacques Paul Migne Garnier 1865 No citable units founds
PL4_4_DE R.xml De Revelatione Capitis Beati Joannis Baptistae Tractatus Incertus None Jacques Paul Migne Garnier 1865 section
PL4_5_CARM.xml Carmen de resurrectione mortuorum None Jacques Paul Migne Garnier 1865 section
PL5_0_SIXT.xml Epistolae Dubiae None Jacques Paul Migne Garnier 1844 letter
PL5_1_EPIS.xml Epistolae Quae ad Sixtum II Attinent None Jacques Paul Migne Garnier 1844 letter, section
PL5_2_EPIS.xml Epistola I 'Adversus Sabellianos' Fragmentum None Jacques Paul Migne Garnier 1844 section
PL5_3_EPIS.xml Epistolae II Dionysii Episcopi ad SS Dionysium None Jacques Paul Migne Garnier 1844 letter, section
PL5_4_CONC.xml In Causa Dionysii Alexandrini de Sabellanismo Accustati None Jacques Paul Migne Garnier 1844 chapter, letter
PL5_5_FRAG.xml Fragmentun None Jacques Paul Migne Garnier 1844 work
PL5_6_S. F.xml Epistolae Dubiae None Jacques Paul Migne Garnier 1844 letter
PL5_7_DE D.xml De decretis Eutychiano adscriptis None Jacques Paul Migne Garnier 1844 section
PL5_8_EUTY.xml Exhortatio ad Presbyteros None Jacques Paul Migne Garnier 1844 work
PL5_9_SANC.xml Epistola et Decreta Dubia None Jacques Paul Migne Garnier 1844 letter
PL5_10_DEC.xml Epistolae Dubiae None Jacques Paul Migne Garnier 1844 No citable units founds
PL5_11_DE .xml De decreto unico quo Caio adscribitur None Jacques Paul Migne Garnier 1844 section
PL5_12_EPI.xml Epistolae Dubiae None Jacques Paul Migne Garnier 1844 No citable units founds
PL5_13_COM.xml Epistolae Dubiae None Jacques Paul Migne Garnier 1844 No citable units founds
PL5_14_ANT.xml Epistolae Dubiae None Jacques Paul Migne Garnier 1844 No citable units founds
PL6_0_EPIS.xml Epistolae Decretaque None Jacques Paul Migne Garnier 1844 No citable units founds
PL6_1_§ IV.xml Epistolae Decretaque None Jacques Paul Migne Garnier 1844 No citable units founds
PL6_2_§ V..xml Epistolae Decretaque None Jacques Paul Migne Garnier 1844 No citable units founds
PL6_3_§ VI.xml Epistolae Decretaque None Jacques Paul Migne Garnier 1844 No citable units founds
PL6_4_ANON.xml Epistolae Decretaque None Jacques Paul Migne Garnier 1844 No citable units founds
PL6_5_CELS.xml Epistolae Decretaque None Jacques Paul Migne Garnier 1844 No citable units founds
PL7_0_LACT.xml Fragmenta None Jacques Paul Migne Garnier 1844 No citable units founds
PL7_1_VENA.xml Fragmenta None Jacques Paul Migne Garnier 1844 No citable units founds
PL7_2_CŒLI.xml Fragmenta None Jacques Paul Migne Garnier 1844 No citable units founds
PL7_3_APPE.xml Fragmenta None Jacques Paul Migne Garnier 1844 No citable units founds
PL7_4_EPIS.xml Fragmenta None Jacques Paul Migne Garnier 1844 No citable units founds
PL7_5_APPE.xml Fragmenta None Jacques Paul Migne Garnier 1844 No citable units founds
PL7_6_APPE.xml Fragmenta None Jacques Paul Migne Garnier 1844 No citable units founds
PL7_7_APPE.xml Fragmenta None Jacques Paul Migne Garnier 1844 No citable units founds
PL8_0_CONSTANTINI MAGNI SC.xml PL8_0_CONSTANTINI MAGNI SC None None None None None section, p
PL8_1_CONCIONES. (.xml PL8_1_CONCIONES. ( None None None None None section
PL8_2_UNKNOWN.xml PL8_2_UNKNOWN None None None None None section
PL8_3_Pars tertia..xml PL8_3_Pars tertia. None None None None None section, p
PL8_4_APPENDIX AD OPERA CO.xml PL8_4_APPENDIX AD OPERA CO None None None None None section
PL8_5_ANNO DOMINI CCCXXI. .xml PL8_5_ANNO DOMINI CCCXXI. None None None None None p
PL8_6_UNKNOWN.xml PL8_6_UNKNOWN None None None None None p
PL8_7_EUMENII PANEGYRICUS .xml PL8_7_EUMENII PANEGYRICUS None None None None None section, p
PL8_8_SYNOPSIS ORATIONIS P.xml PL8_8_SYNOPSIS ORATIONIS P None None None None None p
PL8_9_EUMENII GRATIARUM AC.xml PL8_9_EUMENII GRATIARUM AC None None None None None section, p
PL8_10_INCERTI PANEGYRICUS,.xml PL8_10_INCERTI PANEGYRICUS, None None None None None section, p
PL8_11_UNKNOWN.xml PL8_11_UNKNOWN None None None None None chapter, section, p
PL8_12_OPERA QUAE EXSTANT..xml PL8_12_OPERA QUAE EXSTANT. None None None None None chapter, section, p
PL8_13_APPENDIX. VARIA DUBI.xml PL8_13_APPENDIX. VARIA DUBI None None None None None section, p
PL8_14_CANON VEL CONSTITUTI.xml PL8_14_CANON VEL CONSTITUTI None None None None None chapter, section, p
PL8_15_UNKNOWN.xml PL8_15_UNKNOWN None None None None None section
PL8_16_SCRIPTA DUBIAE AUCTO.xml PL8_16_SCRIPTA DUBIAE AUCTO None None None None None No citable units founds
PL8_17_UNKNOWN.xml PL8_17_UNKNOWN None None None None None No citable units founds
PL8_18_UNKNOWN.xml PL8_18_UNKNOWN None None None None None p
PL8_19_EPISTOLA JULII AD AN.xml PL8_19_EPISTOLA JULII AD AN None None None None None section, p
PL8_20_EPISTOLA (3) JULII P.xml PL8_20_EPISTOLA (3) JULII P None None None None None section, p
PL8_21_EPISTOLA VALENTIS EΤ.xml PL8_21_EPISTOLA VALENTIS EΤ None None None None None section
PL8_22_MONITUM IN EPISTOLAM.xml PL8_22_MONITUM IN EPISTOLAM None None None None None p
PL8_23_EPISTOLA MARCELLI AN.xml PL8_23_EPISTOLA MARCELLI AN None None None None None section, p
PL8_24_EPISTOLA SYNODI SARD.xml PL8_24_EPISTOLA SYNODI SARD None None None None None p
PL8_25_EADEM EPISTOLA EX HI.xml PL8_25_EADEM EPISTOLA EX HI None None None None None No citable units founds
PL8_26_APPENDIX. SCRIPTA SU.xml PL8_26_APPENDIX. SCRIPTA SU None None None None None p
PL8_27_EPISTOLA JULII EPISC.xml PL8_27_EPISTOLA JULII EPISC None None None None None section, p
PL8_28_UNKNOWN.xml PL8_28_UNKNOWN None None None None None section, section, p
PL8_29_FRAGMENTA SCRIPTORUM.xml PL8_29_FRAGMENTA SCRIPTORUM None None None None None fragment, p
PL8_30_DECRETA JULII ΡΑΡAΕ .xml PL8_30_DECRETA JULII ΡΑΡAΕ None None None None None section
PL8_31_EPISTOLA I (1).xml PL8_31_EPISTOLA I (1) None None None None None p
PL8_32_EPISTOLA (1).xml PL8_32_EPISTOLA (1) None None None None None No citable units founds
PL8_33_EPISTOLA II (1)..xml PL8_33_EPISTOLA II (1). None None None None None p
PL8_34_MARII VICTORINI LIBE.xml PL8_34_MARII VICTORINI LIBE None None None None None p
PL8_35_VICTORINI DE VERBIS .xml PL8_35_VICTORINI DE VERBIS None None None None None p
PL8_36_CANDIDI ARIANI LIBER.xml PL8_36_CANDIDI ARIANI LIBER None None None None None p
PL8_37_VICTORINI LIBER DE G.xml PL8_37_VICTORINI LIBER DE G None None None None None p
PL8_38_CANDIDI ARIANI EPIST.xml PL8_38_CANDIDI ARIANI EPIST None None None None None p
PL8_39_VICTORINI ADVERSUS A.xml PL8_39_VICTORINI ADVERSUS A None None None None None p
PL8_40_VICTORINI.xml PL8_40_VICTORINI None None None None None p
PL8_41_VICTORINI DE TRINITA.xml PL8_41_VICTORINI DE TRINITA None None None None None section
PL8_42_VICTORINI IN EPISTOL.xml PL8_42_VICTORINI IN EPISTOL None None None None None section
PL8_43_VICTORINI IN EPISTOL.xml PL8_43_VICTORINI IN EPISTOL None None None None None No citable units founds
PL8_44_VICTORINI IN EPISTOL.xml PL8_44_VICTORINI IN EPISTOL None None None None None section
PL8_45_UNKNOWN.xml PL8_45_UNKNOWN None None None None None section, p
PL8_46_OSII SENTENTIAE.xml PL8_46_OSII SENTENTIAE None None None None None section, section
PL8_47_CORDUBENSIS EPISCOPI.xml PL8_47_CORDUBENSIS EPISCOPI None None None None None section
PL8_48_OPERA QUAE EXSTANT..xml PL8_48_OPERA QUAE EXSTANT. None None None None None p
PL8_49_EPISTOLAE ET DICTA..xml PL8_49_EPISTOLAE ET DICTA. None None None None None section, p
PL8_50_UNKNOWN.xml PL8_50_UNKNOWN None None None None None section, p
PL8_51_EPISTOLA LIBERII EPI.xml PL8_51_EPISTOLA LIBERII EPI None None None None None section
PL8_52_RESCRIPTUM SANCTI PA.xml PL8_52_RESCRIPTUM SANCTI PA None None None None None section
PL8_53_UNKNOWN.xml PL8_53_UNKNOWN None None None None None No citable units founds
PL8_54_EPISTOLA (1).xml PL8_54_EPISTOLA (1) None None None None None No citable units founds
PL8_55_UNKNOWN.xml PL8_55_UNKNOWN None None None None None No citable units founds
PL8_56_POTAMIUS.xml PL8_56_POTAMIUS None None None None None section, p
PL8_57_POTAMII EPISCOPI.xml PL8_57_POTAMII EPISCOPI None None None None None section
PL9_0_EDIT.xml Vita Operaque Ex Ipsius Scriptis Editor None Jacques Paul Migne Garnier 1844 No citable units founds
PL9_1_EPIS.xml Vita Operaque Ex Ipsius Scriptis Editor None Jacques Paul Migne Garnier 1844 No citable units founds
PL9_2_PRÆF.xml Vita Operaque Ex Ipsius Scriptis Editor None Jacques Paul Migne Garnier 1844 No citable units founds
PL9_3_VITA.xml Vita Operaque Ex Ipsius Scriptis Editor None Jacques Paul Migne Garnier 1844 No citable units founds
PL9_4_VITA.xml Vita Operaque Ex Ipsius Scriptis Editor None Jacques Paul Migne Garnier 1844 No citable units founds
PL9_5_DE T.xml Vita Operaque Ex Ipsius Scriptis Editor None Jacques Paul Migne Garnier 1844 No citable units founds
PL9_6_SELE.xml Vita Operaque Ex Ipsius Scriptis Editor None Jacques Paul Migne Garnier 1844 No citable units founds
PL9_7_NOTI.xml Vita Operaque Ex Ipsius Scriptis Editor None Jacques Paul Migne Garnier 1844 No citable units founds
PL9_8_SYLL.xml Vita Operaque Ex Ipsius Scriptis Editor None Jacques Paul Migne Garnier 1844 No citable units founds
PL9_9_ADMO.xml Vita Operaque Ex Ipsius Scriptis Editor None Jacques Paul Migne Garnier 1844 No citable units founds
PL9_10_SAN.xml Vita Operaque Ex Ipsius Scriptis Editor None Jacques Paul Migne Garnier 1844 No citable units founds
PL9_11_SAN.xml Vita Operaque Ex Ipsius Scriptis Editor None Jacques Paul Migne Garnier 1844 No citable units founds
PL9_12_ADM.xml Vita Operaque Ex Ipsius Scriptis Editor None Jacques Paul Migne Garnier 1844 No citable units founds
PL9_13_.xml Vita Operaque Ex Ipsius Scriptis Editor None Jacques Paul Migne Garnier 1844 No citable units founds
PL9_14_IND.xml Vita Operaque Ex Ipsius Scriptis Editor None Jacques Paul Migne Garnier 1844 No citable units founds
PL10_0_SAN.xml None None None None None section, p
PL10_1_445.xml None None None None None p
PL10_2_457.xml None None None None None p
PL10_3_521.xml None None None None None p
PL10_4_ADM.xml None None None None None No citable units founds
PL10_5_UNK.xml None None None None None p
PL10_6_529.xml None None None None None No citable units founds
PL10_7_UNK.xml None None None None None No citable units founds
PL10_8_.xml None None None None None book, section, p
PL10_9_PRA.xml None None None None None p
PL10_10_56.xml None None None None None section, p
PL10_11_AD.xml None None None None None p
PL10_12_59.xml None None None None None section, p
PL10_13_UN.xml None None None None None section, p
PL10_14_71.xml None None None None None p
PL10_15_AP.xml None None None None None section, p
PL10_16_SA.xml None None None None None p
PL10_17_SE.xml None None None None None No citable units founds
PL10_18_LI.xml None None None None None No citable units founds
PL10_19_DE.xml None None None None None No citable units founds
PL10_20_NI.xml None None None None None p
PL11_0_(CL.xml Missae Sancti Zenonis E Vetustis Mss Sacramentorum Libris None Jacques Paul Migne Garnier 1845 No citable units founds
PL11_1_ORA.xml Missae Sancti Zenonis E Vetustis Mss Sacramentorum Libris None Jacques Paul Migne Garnier 1845 No citable units founds
PL11_2_CL.xml Missae Sancti Zenonis E Vetustis Mss Sacramentorum Libris None Jacques Paul Migne Garnier 1845 No citable units founds
PL11_3_TES.xml Missae Sancti Zenonis E Vetustis Mss Sacramentorum Libris None Jacques Paul Migne Garnier 1845 No citable units founds
PL11_4_TRA.xml Missae Sancti Zenonis E Vetustis Mss Sacramentorum Libris None Jacques Paul Migne Garnier 1845 No citable units founds
PL11_5_201.xml Missae Sancti Zenonis E Vetustis Mss Sacramentorum Libris None Jacques Paul Migne Garnier 1845 No citable units founds
PL11_6_225.xml Missae Sancti Zenonis E Vetustis Mss Sacramentorum Libris None Jacques Paul Migne Garnier 1845 No citable units founds
PL11_7_326.xml Missae Sancti Zenonis E Vetustis Mss Sacramentorum Libris None Jacques Paul Migne Garnier 1845 No citable units founds
PL11_8_333.xml Missae Sancti Zenonis E Vetustis Mss Sacramentorum Libris None Jacques Paul Migne Garnier 1845 No citable units founds
PL12_0_SAN.xml Epistolae None Jacques Paul Migne Garnier 1845 No citable units founds
PL12_1_DE .xml Epistolae None Jacques Paul Migne Garnier 1845 No citable units founds
PL12_2_SAN.xml Epistolae None Jacques Paul Migne Garnier 1845 No citable units founds
PL13_0_EPI.xml None None None None None section, p
PL13_1_FAU.xml None None None None None section, p
PL13_2_FAU.xml None None None None None No citable units founds
PL13_3_UNK.xml None None None None None section, p
PL13_4_DIA.xml None None None None None section, p
PL13_5_SAN.xml None None None None None section, p
PL13_6_DE .xml None None None None None No citable units founds
PL13_7_CAR.xml None None None None None section
PL13_8_APP.xml None None None None None p
PL13_9_CAR.xml None None None None None section
PL13_10_AD.xml None None None None None section, p
PL13_11_OP.xml None None None None None section, p
PL13_12_AN.xml None None None None None No citable units founds
PL13_13_AN.xml None None None None None chapter, p
PL13_14_TH.xml None None None None None p
PL13_15_UN.xml None None None None None section
PL13_16_AN.xml None None None None None p
PL13_17_SA.xml None None None None None section, p
PL13_18_MO.xml None None None None None section, p
PL13_19_SE.xml None None None None None section
PL13_20_SE.xml None None None None None section
PL13_21_CO.xml None None None None None No citable units founds
PL13_22_SE.xml None None None None None section, p
PL13_23_EX.xml None None None None None No citable units founds
PL13_24_BR.xml None None None None None No citable units founds
PL13_25_KA.xml None None None None None p
PL13_26_UN.xml None None None None None No citable units founds
PL13_27_UN.xml None None None None None No citable units founds
PL13_28_NA.xml None None None None None No citable units founds
PL13_29_FL.xml None None None None None No citable units founds
PL13_30_LU.xml None None None None None No citable units founds
PL13_31_AP.xml None None None None None section
PL13_32_UN.xml None None None None None p
PL13_33_SA.xml None None None None None section, p
PL13_34_SA.xml None None None None None p
PL13_35_SA.xml None None None None None p
PL13_36_Q .xml None None None None None p
PL13_37_UN.xml None None None None None p
PL13_38_S..xml None None None None None p
PL13_39_EP.xml None None None None None No citable units founds
PL13_40_EP.xml None None None None None No citable units founds
PL13_41_EP.xml None None None None None p
PL13_42_EP.xml None None None None None p
PL13_43_UN.xml None None None None None p
PL13_44_EP.xml None None None None None p
PL13_45_EP.xml None None None None None p
PL13_46_EP.xml None None None None None p
PL13_47_EP.xml None None None None None p
PL13_48_AD.xml None None None None None section, p
PL13_49_DE.xml None None None None None p
PL13_50_DU.xml None None None None None No citable units founds
PL13_51_MO.xml None None None None None No citable units founds
PL13_52_KA.xml None None None None None No citable units founds
PL14_0_SAN.xml De Interpellatione Job Et David Liber Quatuor None Jacques Paul Migne Garnier 1845 No citable units founds
PL14_1_SAN.xml De Interpellatione Job Et David Liber Quatuor None Jacques Paul Migne Garnier 1845 No citable units founds
PL14_2_SAN.xml De Interpellatione Job Et David Liber Quatuor None Jacques Paul Migne Garnier 1845 No citable units founds
PL15_0_COM.xml Commentarius In Cantica Canticorum None Jacques Paul Migne Garnier 1845 No citable units founds
PL15_1_SAN.xml Commentarius In Cantica Canticorum None Jacques Paul Migne Garnier 1845 No citable units founds
PL15_2_HIS.xml Commentarius In Cantica Canticorum None Jacques Paul Migne Garnier 1845 No citable units founds
PL15_3_CON.xml Commentarius In Cantica Canticorum None Jacques Paul Migne Garnier 1845 No citable units founds
PL15_4_ELE.xml Commentarius In Cantica Canticorum None Jacques Paul Migne Garnier 1845 No citable units founds
PL15_5_IND.xml Commentarius In Cantica Canticorum None Jacques Paul Migne Garnier 1845 No citable units founds
PL15_6_IND.xml Commentarius In Cantica Canticorum None Jacques Paul Migne Garnier 1845 No citable units founds
PL16_0_SAN.xml De Officiis Ministrorum Libri Tres None Jacques Paul Migne Garnier 1880 No citable units founds
PL16_1_SAN.xml De Officiis Ministrorum Libri Tres None Jacques Paul Migne Garnier 1880 No citable units founds
PL16_2_SAN.xml De Officiis Ministrorum Libri Tres None Jacques Paul Migne Garnier 1880 No citable units founds
PL16_3_SAN.xml De Officiis Ministrorum Libri Tres None Jacques Paul Migne Garnier 1880 No citable units founds
PL16_4_SAN.xml De Officiis Ministrorum Libri Tres None Jacques Paul Migne Garnier 1880 No citable units founds
PL16_5_SAN.xml De Officiis Ministrorum Libri Tres None Jacques Paul Migne Garnier 1880 No citable units founds
PL16_6_SAN.xml De Officiis Ministrorum Libri Tres None Jacques Paul Migne Garnier 1880 No citable units founds
PL16_7_SAN.xml De Officiis Ministrorum Libri Tres None Jacques Paul Migne Garnier 1880 No citable units founds
PL16_8_SAN.xml De Officiis Ministrorum Libri Tres None Jacques Paul Migne Garnier 1880 No citable units founds
PL16_9_SAN.xml De Officiis Ministrorum Libri Tres None Jacques Paul Migne Garnier 1880 No citable units founds
PL16_10_SA.xml De Officiis Ministrorum Libri Tres None Jacques Paul Migne Garnier 1880 No citable units founds
PL16_11_SA.xml De Officiis Ministrorum Libri Tres None Jacques Paul Migne Garnier 1880 No citable units founds
PL16_12_SA.xml De Officiis Ministrorum Libri Tres None Jacques Paul Migne Garnier 1880 No citable units founds
PL16_13_FR.xml De Officiis Ministrorum Libri Tres None Jacques Paul Migne Garnier 1880 No citable units founds
PL16_14_OR.xml De Officiis Ministrorum Libri Tres None Jacques Paul Migne Garnier 1880 No citable units founds
PL16_15_OR.xml De Officiis Ministrorum Libri Tres None Jacques Paul Migne Garnier 1880 No citable units founds
PL16_16_OR.xml De Officiis Ministrorum Libri Tres None Jacques Paul Migne Garnier 1880 No citable units founds
PL16_17_ED.xml De Officiis Ministrorum Libri Tres None Jacques Paul Migne Garnier 1880 No citable units founds
PL16_18_EP.xml De Officiis Ministrorum Libri Tres None Jacques Paul Migne Garnier 1880 No citable units founds
PL16_19_SA.xml De Officiis Ministrorum Libri Tres None Jacques Paul Migne Garnier 1880 No citable units founds
PL16_20_SE.xml De Officiis Ministrorum Libri Tres None Jacques Paul Migne Garnier 1880 No citable units founds
PL16_21_SA.xml De Officiis Ministrorum Libri Tres None Jacques Paul Migne Garnier 1880 No citable units founds
PL16_22_SA.xml De Officiis Ministrorum Libri Tres None Jacques Paul Migne Garnier 1880 No citable units founds
PL16_23_SA.xml De Officiis Ministrorum Libri Tres None Jacques Paul Migne Garnier 1880 No citable units founds
PL16_24_SA.xml De Officiis Ministrorum Libri Tres None Jacques Paul Migne Garnier 1880 No citable units founds
PL16_25_EL.xml De Officiis Ministrorum Libri Tres None Jacques Paul Migne Garnier 1880 No citable units founds
PL16_26_IN.xml De Officiis Ministrorum Libri Tres None Jacques Paul Migne Garnier 1880 No citable units founds
PL16_27_IN.xml De Officiis Ministrorum Libri Tres None Jacques Paul Migne Garnier 1880 No citable units founds
PL16_28_IN.xml De Officiis Ministrorum Libri Tres None Jacques Paul Migne Garnier 1880 No citable units founds
PL17_0_ELE.xml De XLII Mansionibus Filiorum Israel Tractatus None Jacques Paul Migne Garnier 1879 No citable units founds
PL17_1_AD .xml De XLII Mansionibus Filiorum Israel Tractatus None Jacques Paul Migne Garnier 1879 No citable units founds
PL17_2_COM.xml De XLII Mansionibus Filiorum Israel Tractatus None Jacques Paul Migne Garnier 1879 No citable units founds
PL17_3_IN .xml De XLII Mansionibus Filiorum Israel Tractatus None Jacques Paul Migne Garnier 1879 No citable units founds
PL17_4_IN .xml De XLII Mansionibus Filiorum Israel Tractatus None Jacques Paul Migne Garnier 1879 No citable units founds
PL17_5_IN .xml De XLII Mansionibus Filiorum Israel Tractatus None Jacques Paul Migne Garnier 1879 No citable units founds
PL17_6_IN .xml De XLII Mansionibus Filiorum Israel Tractatus None Jacques Paul Migne Garnier 1879 No citable units founds
PL17_7_IN .xml De XLII Mansionibus Filiorum Israel Tractatus None Jacques Paul Migne Garnier 1879 No citable units founds
PL17_8_IN .xml De XLII Mansionibus Filiorum Israel Tractatus None Jacques Paul Migne Garnier 1879 No citable units founds
PL17_9_IN .xml De XLII Mansionibus Filiorum Israel Tractatus None Jacques Paul Migne Garnier 1879 No citable units founds
PL17_10_IN.xml De XLII Mansionibus Filiorum Israel Tractatus None Jacques Paul Migne Garnier 1879 No citable units founds
PL17_11_IN.xml De XLII Mansionibus Filiorum Israel Tractatus None Jacques Paul Migne Garnier 1879 No citable units founds
PL17_12_IN.xml De XLII Mansionibus Filiorum Israel Tractatus None Jacques Paul Migne Garnier 1879 No citable units founds
PL17_13_IN.xml De XLII Mansionibus Filiorum Israel Tractatus None Jacques Paul Migne Garnier 1879 No citable units founds
PL17_14_IN.xml De XLII Mansionibus Filiorum Israel Tractatus None Jacques Paul Migne Garnier 1879 No citable units founds
PL17_15_IN.xml De XLII Mansionibus Filiorum Israel Tractatus None Jacques Paul Migne Garnier 1879 No citable units founds
PL17_16_DE.xml De XLII Mansionibus Filiorum Israel Tractatus None Jacques Paul Migne Garnier 1879 No citable units founds
PL17_17_DE.xml De XLII Mansionibus Filiorum Israel Tractatus None Jacques Paul Migne Garnier 1879 No citable units founds
PL17_18_DE.xml De XLII Mansionibus Filiorum Israel Tractatus None Jacques Paul Migne Garnier 1879 No citable units founds
PL17_19_AD.xml De XLII Mansionibus Filiorum Israel Tractatus None Jacques Paul Migne Garnier 1879 No citable units founds
PL17_20_IN.xml De XLII Mansionibus Filiorum Israel Tractatus None Jacques Paul Migne Garnier 1879 No citable units founds
PL17_21_.xml De XLII Mansionibus Filiorum Israel Tractatus None Jacques Paul Migne Garnier 1879 No citable units founds
PL17_22_EP.xml De XLII Mansionibus Filiorum Israel Tractatus None Jacques Paul Migne Garnier 1879 No citable units founds
PL17_23_PR.xml De XLII Mansionibus Filiorum Israel Tractatus None Jacques Paul Migne Garnier 1879 No citable units founds
PL17_24_EX.xml De XLII Mansionibus Filiorum Israel Tractatus None Jacques Paul Migne Garnier 1879 No citable units founds
PL17_25_DE.xml De XLII Mansionibus Filiorum Israel Tractatus None Jacques Paul Migne Garnier 1879 No citable units founds
PL17_26_DE.xml De XLII Mansionibus Filiorum Israel Tractatus None Jacques Paul Migne Garnier 1879 No citable units founds
PL17_27_HE.xml De XLII Mansionibus Filiorum Israel Tractatus None Jacques Paul Migne Garnier 1879 No citable units founds
PL17_28_DE.xml De XLII Mansionibus Filiorum Israel Tractatus None Jacques Paul Migne Garnier 1879 No citable units founds
PL17_29_EX.xml De XLII Mansionibus Filiorum Israel Tractatus None Jacques Paul Migne Garnier 1879 No citable units founds
PL17_30_AP.xml De XLII Mansionibus Filiorum Israel Tractatus None Jacques Paul Migne Garnier 1879 No citable units founds
PL17_31_AC.xml De XLII Mansionibus Filiorum Israel Tractatus None Jacques Paul Migne Garnier 1879 No citable units founds
PL17_32_LI.xml De XLII Mansionibus Filiorum Israel Tractatus None Jacques Paul Migne Garnier 1879 No citable units founds
PL17_33_LI.xml De XLII Mansionibus Filiorum Israel Tractatus None Jacques Paul Migne Garnier 1879 No citable units founds
PL17_34_DE.xml De XLII Mansionibus Filiorum Israel Tractatus None Jacques Paul Migne Garnier 1879 No citable units founds
PL17_35_PH.xml De XLII Mansionibus Filiorum Israel Tractatus None Jacques Paul Migne Garnier 1879 No citable units founds
PL17_36_EP.xml De XLII Mansionibus Filiorum Israel Tractatus None Jacques Paul Migne Garnier 1879 No citable units founds
PL17_37_EX.xml De XLII Mansionibus Filiorum Israel Tractatus None Jacques Paul Migne Garnier 1879 No citable units founds
PL17_38_EP.xml De XLII Mansionibus Filiorum Israel Tractatus None Jacques Paul Migne Garnier 1879 No citable units founds
PL17_39_AD.xml De XLII Mansionibus Filiorum Israel Tractatus None Jacques Paul Migne Garnier 1879 No citable units founds
PL17_40_HY.xml De XLII Mansionibus Filiorum Israel Tractatus None Jacques Paul Migne Garnier 1879 No citable units founds
PL17_41_OR.xml De XLII Mansionibus Filiorum Israel Tractatus None Jacques Paul Migne Garnier 1879 No citable units founds
PL18_0_ANN.xml None None None None None section, p
PL18_1_SAN.xml None None None None None No citable units founds
PL18_2_UNK.xml None None None None None section, p
PL18_3_TIC.xml None None None None None section
PL18_4_ANN.xml None None None None None section, p
PL18_5_ANN.xml None None None None None No citable units founds
PL18_6_UNK.xml None None None None None section, p
PL18_7_EXH.xml None None None None None p
PL18_8_MON.xml None None None None None section, p
PL18_9_SAN.xml None None None None None section, p
PL18_10_AN.xml None None None None None section
PL18_11_UN.xml None None None None None No citable units founds
PL18_12_Q..xml None None None None None book, section
PL18_13_AN.xml None None None None None section
PL18_14_AN.xml None None None None None section
PL18_15_MA.xml None None None None None p
PL18_16_AP.xml None None None None None section
PL18_17_PU.xml None None None None None section
PL18_18_UN.xml None None None None None section
PL19_0_UNK.xml None None None None None p
PL19_1_DE .xml None None None None None p
PL19_2_TRI.xml None None None None None p
PL19_3_P. .xml None None None None None section
PL19_4_TES.xml None None None None None No citable units founds
PL19_5_EPI.xml None None None None None No citable units founds
PL19_6_EPI.xml None None None None None section
PL19_7_UNK.xml None None None None None p
PL19_8_UNK.xml None None None None None section, p
PL19_9_DEC.xml None None None None None section
PL19_10_SE.xml None None None None None section
PL19_11_VA.xml None None None None None section
PL19_12_DE.xml None None None None None chapter, section
PL20_0_SANCTI PHOEBADII AGI.xml PL20_0_SANCTI PHOEBADII AGI None None None None None section
PL20_1_UNKNOWN.xml PL20_1_UNKNOWN None None None None None section
PL20_2_III. LIBELLUS FIDEI..xml PL20_2_III. LIBELLUS FIDEI. None None None None None No citable units founds
PL20_3_S. ANASTASII I PAPAE.xml PL20_3_S. ANASTASII I PAPAE None None None None None section, p
PL20_4_APPENDIX. EPISTOLAE .xml PL20_4_APPENDIX. EPISTOLAE None None None None None section, p
PL20_5_SANCTI CHROMATII AQU.xml PL20_5_SANCTI CHROMATII AQU None None None None None p
PL20_6_SANCTI CHROMATII AQU.xml PL20_6_SANCTI CHROMATII AQU None None None None None section, p
PL20_7_95 DICTA A SANCTO CH.xml PL20_7_95 DICTA A SANCTO CH None None None None None No citable units founds
PL20_8_UNKNOWN.xml PL20_8_UNKNOWN None None None None None section, chapter
PL20_9_UNKNOWN.xml PL20_9_UNKNOWN None None None None None p
PL20_10_S. INNOCENTII I PAPA.xml PL20_10_S. INNOCENTII I PAPA None None None None None section, p
PL20_11_APPENDIX AD EPISTOLA.xml PL20_11_APPENDIX AD EPISTOLA None None None None None p
PL20_12_DECRETA EX EPISTOLIS.xml PL20_12_DECRETA EX EPISTOLIS None None None None None section, p
PL20_13_EPISTOLAE S. INNOCEN.xml PL20_13_EPISTOLAE S. INNOCEN None None None None None section, p
PL20_14_ZOSIMI ΡΑΡAE EPISTOL.xml PL20_14_ZOSIMI ΡΑΡAE EPISTOL None None None None None section, p
PL20_15_DECRETA EX EPISTOLIS.xml PL20_15_DECRETA EX EPISTOLIS None None None None None p
PL20_16_EPISTOLA S. ZOSIMO P.xml PL20_16_EPISTOLA S. ZOSIMO P None None None None None section
PL20_17_II. LIBELLUS ADVERSU.xml PL20_17_II. LIBELLUS ADVERSU None None None None None p
PL20_18_III. DE BENEDICTIONI.xml PL20_18_III. DE BENEDICTIONI None None None None None section, p
PL20_19_ANNO DOMINI CCCCXVII.xml PL20_19_ANNO DOMINI CCCCXVII None None None None None section
PL20_20_UNKNOWN.xml PL20_20_UNKNOWN None None None None None section, p
PL20_21_DECRETA EX EPISTOLIS.xml PL20_21_DECRETA EX EPISTOLIS None None None None None p
PL20_22_EPISTOLA S. BONIFACI.xml PL20_22_EPISTOLA S. BONIFACI None None None None None section
PL20_23_UNKNOWN.xml PL20_23_UNKNOWN None None None None None sermo, section
PL20_24_AD LAUDEM BEATI FILA.xml PL20_24_AD LAUDEM BEATI FILA None None None None None No citable units founds
PL20_25_SANCTI AURELII CARTH.xml PL20_25_SANCTI AURELII CARTH None None None None None No citable units founds
PL20_26_SYNODICA AURELII CAR.xml PL20_26_SYNODICA AURELII CAR None None None None None section
PL20_27_EPISTOLA AURELII DAM.xml PL20_27_EPISTOLA AURELII DAM None None None None None No citable units founds
PL20_28_BACHIARII FIDES..xml PL20_28_BACHIARII FIDES. None None None None None p
PL20_29_BACHIARII AD JANUARI.xml PL20_29_BACHIARII AD JANUARI None None None None None p
PL20_30_UNKNOWN.xml PL20_30_UNKNOWN None None None None None book, section
PL20_31_ALTEERCAIO INTER THE.xml PL20_31_ALTEERCAIO INTER THE None None None None None No citable units founds
PL20_32_EVAGRII MONACHI SENT.xml PL20_32_EVAGRII MONACHI SENT None None None None None section
PL21_0_TYR.xml None None None None None book, section, p
PL21_1_TYR.xml None None None None None book, section, p
PL21_2_COM.xml None None None None None p
PL21_3_HIS.xml None None None None None chapter, section, p
PL21_4_.xml None None None None None book, section, p
PL21_5_RUF.xml None None None None None section, p
PL21_6_APO.xml None None None None None p
PL21_7_EPI.xml None None None None None section, p
PL21_8_UNK.xml None None None None None No citable units founds
PL21_9_IN .xml None None None None None chapter, section, p
PL21_10_CO.xml None None None None None section
PL21_11_CO.xml None None None None None book, section
PL21_12_CO.xml None None None None None section
PL21_13_CO.xml None None None None None book, section
PL21_14_VI.xml None None None None None section
PL21_15_LI.xml None None None None None section, p
PL21_16_RU.xml None None None None None p
PL22_0_SAN.xml Epistolae Secundum Ordinem Temporum Distributae None Jacques Paul Migne Garnier 1845 No citable units founds
PL22_1_D. .xml Epistolae Secundum Ordinem Temporum Distributae None Jacques Paul Migne Garnier 1845 No citable units founds
PL22_2_ORD.xml Epistolae Secundum Ordinem Temporum Distributae None Jacques Paul Migne Garnier 1845 No citable units founds
PL22_3_S. .xml Epistolae Secundum Ordinem Temporum Distributae None Jacques Paul Migne Garnier 1845 No citable units founds
PL22_4_EPI.xml Epistolae Secundum Ordinem Temporum Distributae None Jacques Paul Migne Garnier 1845 No citable units founds
PL22_5_EPI.xml Epistolae Secundum Ordinem Temporum Distributae None Jacques Paul Migne Garnier 1845 No citable units founds
PL22_6_IND.xml Epistolae Secundum Ordinem Temporum Distributae None Jacques Paul Migne Garnier 1845 No citable units founds
PL23_0_VITA.xml PL23_0_VITA None None None None None section, p
PL23_1_VITA .xml PL23_1_VITA None None None None None section, p
PL23_2_UNKNOWN.xml PL23_2_UNKNOWN None None None None None p
PL23_3_IN SUBSEQUENTEM S. P.xml PL23_3_IN SUBSEQUENTEM S. P None None None None None No citable units founds
PL23_4_UNKNOWN.xml PL23_4_UNKNOWN None None None None None chapter, section, p
PL23_5_PRAECEPTA ET INSTITU.xml PL23_5_PRAECEPTA ET INSTITU None None None None None p
PL23_6_PRAECEPTA ATQUE JUDI.xml PL23_6_PRAECEPTA ATQUE JUDI None None None None None p
PL23_7_PRAECEPTA AC LEGES S.xml PL23_7_PRAECEPTA AC LEGES S None None None None None p
PL23_8_MONITA S. PACHOMI I..xml PL23_8_MONITA S. PACHOMI I. None None None None None No citable units founds
PL23_9_SS. PP. PACHOMII ET .xml PL23_9_SS. PP. PACHOMII ET None None None None None section, p
PL23_10_S. EUSEBII HIERONYMI.xml PL23_10_S. EUSEBII HIERONYMI None None None None None chapter, p
PL23_11_IN SEQUENTEM LIBRUM .xml PL23_11_IN SEQUENTEM LIBRUM None None None None None No citable units founds
PL23_12_S. EUSEBII HIERONYMI.xml PL23_12_S. EUSEBII HIERONYMI None None None None None p, section
PL23_13_UNKNOWN.xml PL23_13_UNKNOWN None None None None None section, p
PL23_14_S. EUSEBII HIERONYMI.xml PL23_14_S. EUSEBII HIERONYMI None None None None None section, p
PL23_15_S. EUSEBII HIERONYMI.xml PL23_15_S. EUSEBII HIERONYMI None None None None None section, p
PL23_16_UNKNOWN.xml PL23_16_UNKNOWN None None None None None p
PL23_17_UNKNOWN.xml PL23_17_UNKNOWN None None None None None section, p
PL23_18_IN SEQ. DIALOGOS CON.xml PL23_18_IN SEQ. DIALOGOS CON None None None None None p
PL23_19_S. EUSEBII HIERONYMI.xml PL23_19_S. EUSEBII HIERONYMI None None None None None section, p
PL23_20_THEODORI MOPSUESTENI.xml PL23_20_THEODORI MOPSUESTENI None None None None None p
PL23_21_UNKNOWN.xml PL23_21_UNKNOWN None None None None None chapter, section
PL23_22_UNKNOWN.xml PL23_22_UNKNOWN None None None None None section, p
PL23_23_II. EPISTOLA.xml PL23_23_II. EPISTOLA None None None None None No citable units founds
PL23_24_UNKNOWN.xml PL23_24_UNKNOWN None None None None None p
PL23_25_S. EUSEBII HIERONYMI.xml PL23_25_S. EUSEBII HIERONYMI None None None None None section
PL23_26_S. EUSEBII HIERONYMI.xml PL23_26_S. EUSEBII HIERONYMI None None None None None section
PL23_27_EX HIERONYMI LIBRIS .xml PL23_27_EX HIERONYMI LIBRIS None None None None None No citable units founds
PL23_28_UNKNOWN.xml PL23_28_UNKNOWN None None None None None section
PL23_29_UNKNOWN.xml PL23_29_UNKNOWN None None None None None section
PL23_30_UNKNOWN.xml PL23_30_UNKNOWN None None None None None chapter, p
PL23_31_GRAECA FRAGMENTA LIB.xml PL23_31_GRAECA FRAGMENTA LIB None None None None None chapter, section
PL23_32_UNKNOWN.xml PL23_32_UNKNOWN None None None None None No citable units founds
PL23_33_UNKNOWN.xml PL23_33_UNKNOWN None None None None None section
PL23_34_UNKNOWN.xml PL23_34_UNKNOWN None None None None None section
PL23_35_DE DECEM DEI NOMINIB.xml PL23_35_DE DECEM DEI NOMINIB None None None None None chapter, section
PL23_36_CAPITULI GRAECI DE D.xml PL23_36_CAPITULI GRAECI DE D None None None None None section
PL23_37_LIBRI NOMINUM HEBRAI.xml PL23_37_LIBRI NOMINUM HEBRAI None None None None None section
PL23_38_LIBRI NOMINUM HEBRAI.xml PL23_38_LIBRI NOMINUM HEBRAI None None None None None section
PL23_39_APPENDICIS PARS ALTE.xml PL23_39_APPENDICIS PARS ALTE None None None None None section
PL23_40_LIBER NOMINUM LOCORU_APPENDICIS PARS ALTERA, COMPLECTENS LATINA QUAEDAM OPUSCULA S. Hieronymo olim falso tum in editis cum mss. libris attributa..xml PL23_40_LIBER NOMINUM LOCORU_APPENDICIS PARS ALTERA, COMPLECTENS LATINA QUAEDAM OPUSCULA S. Hieronymo olim falso tum in editis cum mss. libris attributa. None None None None None No citable units founds
PL23_41_Subnectitur in meo m.xml PL23_41_Subnectitur in meo m None None None None None section
PL23_42_DE DEO ET NOMINIBUS .xml PL23_42_DE DEO ET NOMINIBUS None None None None None No citable units founds
PL23_43_ADMONITIO IN SUBSEQU.xml PL23_43_ADMONITIO IN SUBSEQU None None None None None No citable units founds
PL23_44_UNKNOWN.xml PL23_44_UNKNOWN None None None None None No citable units founds
PL23_45_DE BENEDICTIONIBUS J.xml PL23_45_DE BENEDICTIONIBUS J None None None None None section
PL23_46_ADMONITIO IN DUOS SE.xml PL23_46_ADMONITIO IN DUOS SE None None None None None No citable units founds
PL23_47_DECEM TENTATIONES PO.xml PL23_47_DECEM TENTATIONES PO None None None None None No citable units founds
PL23_48_ITEM.xml PL23_48_ITEM None None None None None No citable units founds
PL23_49_COMMENTARIUS IN CANT.xml PL23_49_COMMENTARIUS IN CANT None None None None None No citable units founds
PL23_50_ADMONITIO IN OPUSCUL.xml PL23_50_ADMONITIO IN OPUSCUL None None None None None No citable units founds
PL23_51_QUAESTIONES HEBRAICA.xml PL23_51_QUAESTIONES HEBRAICA None None None None None section
PL23_52_EX COMMENTARIO IN JO.xml PL23_52_EX COMMENTARIO IN JO None None None None None chapter, section
PL24_0_S. .xml Commentariorum In Isaim Prophetam Libri Duodeviginti None Jacques Paul Migne Garnier 1865 No citable units founds
PL24_1_S. .xml Commentariorum In Isaim Prophetam Libri Duodeviginti None Jacques Paul Migne Garnier 1865 No citable units founds
PL24_2_APP.xml Commentariorum In Isaim Prophetam Libri Duodeviginti None Jacques Paul Migne Garnier 1865 No citable units founds
PL24_3_IND.xml Commentariorum In Isaim Prophetam Libri Duodeviginti None Jacques Paul Migne Garnier 1865 No citable units founds
PL25_0_S. EUSEBII HIERONYMI.xml PL25_0_S. EUSEBII HIERONYMI None None None None None section
PL25_1_UNKNOWN.xml PL25_1_UNKNOWN None None None None None section
PL25_2_S. EUSEBII HIERONYMI.xml PL25_2_S. EUSEBII HIERONYMI None None None None None chapter, section
PL25_3_INCIPIUNT HOMILIAE X.xml PL25_3_INCIPIUNT HOMILIAE X None None None None None section, p
PL25_4_IN LAMENTATIONES JER.xml PL25_4_IN LAMENTATIONES JER None None None None None No citable units founds
PL25_5_S. EUSEBII HIERONYMI.xml PL25_5_S. EUSEBII HIERONYMI None None None None None section
PL25_6_UNKNOWN.xml PL25_6_UNKNOWN None None None None None section
PL25_7_UNKNOWN.xml PL25_7_UNKNOWN None None None None None section
PL25_8_S. EUSEBII HIERONYMI.xml PL25_8_S. EUSEBII HIERONYMI None None None None None section
PL25_9_S. EUSEBII HIERONYMI.xml PL25_9_S. EUSEBII HIERONYMI None None None None None section
PL25_10_S. EUSEBII HIERONYMI.xml PL25_10_S. EUSEBII HIERONYMI None None None None None section
PL25_11_S. EUSEBII HIERONYMI.xml PL25_11_S. EUSEBII HIERONYMI None None None None None section
PL25_12_S. EUSEBII HIERONYMI.xml PL25_12_S. EUSEBII HIERONYMI None None None None None section
PL25_13_S. EUSEBII HIERONYMI.xml PL25_13_S. EUSEBII HIERONYMI None None None None None section
PL25_14_S. EUSEBII HIERONYMI.xml PL25_14_S. EUSEBII HIERONYMI None None None None None section
PL25_15_S. EUSEBII HIERONYMI.xml PL25_15_S. EUSEBII HIERONYMI None None None None None section
PL25_16_S. EUSEBII HIERONYMI.xml PL25_16_S. EUSEBII HIERONYMI None None None None None section
PL26_0_S. EUSEBII HIERONYMI.xml PL26_new_0_S. EUSEBII HIERONYMI None None None None None section, chapter
PL26_1_UNKNOWN.xml PL26_new_1_UNKNOWN None None None None None chapter, section
PL26_2_UNKNOWN.xml PL26_new_2_UNKNOWN None None None None None section
PL26_3_UNKNOWN.xml PL26_new_3_UNKNOWN None None None None None section
PL26_4_S. EUSEBII HIERONYMI.xml PL26_new_4_S. EUSEBII HIERONYMI None None None None None section, chapter
PL26_5_S. EUSEBII HIERONYMI.xml PL26_new_5_S. EUSEBII HIERONYMI None None None None None section
PL26_6_UNKNOWN.xml PL26_new_6_UNKNOWN None None None None None chapter, section
PL26_7_BREVIARIUM IN PSALMO.xml PL26_new_7_BREVIARIUM IN PSALMO None None None None None chapter, section
PL26_8_LIBER DE EXPOSITIONE_BREVIARIUM IN PSALMOS..xml PL26_new_8_LIBER DE EXPOSITIONE_BREVIARIUM IN PSALMOS. None None None None None section
PL27_0_.xml Chronicum None Jacques Paul Migne Garnier 1845 No citable units founds
PL27_1_.xml Chronicum None Jacques Paul Migne Garnier 1845 No citable units founds
PL27_2_C. .xml Chronicum None Jacques Paul Migne Garnier 1845 No citable units founds
PL27_3_60 .xml Chronicum None Jacques Paul Migne Garnier 1845 No citable units founds
PL27_4_67 .xml Chronicum None Jacques Paul Migne Garnier 1845 No citable units founds
PL28_0_ORDO PRIMUS, LEGIS..xml PL28_0_ORDO PRIMUS, LEGIS. None None None None None section
PL28_1_ .xml PL28_1_ None None None None None section, p
PL28_2_ .xml PL28_2_ None None None None None section, p
PL28_3_ .xml PL28_3_ None None None None None section, p
PL28_4_ .xml PL28_4_ None None None None None section, p
PL28_5_UNKNOWN.xml PL28_5_UNKNOWN None None None None None section, p
PL28_6_S. EUSEBII HIERONYMI.xml PL28_6_S. EUSEBII HIERONYMI None None None None None section, p
PL28_7_ .xml PL28_7_ None None None None None section, p
PL28_8_ .xml PL28_8_ None None None None None section, p
PL28_9_ .xml PL28_9_ None None None None None chapter, section
PL28_10_ .xml PL28_10_ None None None None None chapter, section
PL28_11_ .xml PL28_11_ None None None None None chapter, section
PL28_12_ .xml PL28_12_ None None None None None chapter, section
PL28_13_INCIPIUNT CINOTH, ID.xml PL28_13_INCIPIUNT CINOTH, ID None None None None None No citable units founds
PL28_14_ .xml PL28_14_ None None None None None chapter
PL28_15_ .xml PL28_15_ None None None None None section, chapter
PL28_16_UNKNOWN.xml PL28_16_UNKNOWN None None None None None section, chapter
PL28_17_UNKNOWN.xml PL28_17_UNKNOWN None None None None None chapter
PL28_18_UNKNOWN.xml PL28_18_UNKNOWN None None None None None chapter
PL28_19_INCIPIT LIBER ECCLES.xml PL28_19_INCIPIT LIBER ECCLES None None None None None No citable units founds
PL28_20_INCIPIT CANTICUM CAN.xml PL28_20_INCIPIT CANTICUM CAN None None None None None No citable units founds
PL28_21_ .xml PL28_21_ None None None None None section, chapter
PL28_22_ .xml PL28_22_ None None None None None chapter
PL28_23_ .xml PL28_23_ None None None None None chapter
PL28_24_ .xml PL28_24_ None None None None None chapter
PL29_0_PRÆ.xml Divina Bibliotheca 25-99 None Jacques Paul Migne Garnier 1863 No citable units founds
PL29_1_S. .xml Divina Bibliotheca 25-99 None Jacques Paul Migne Garnier 1863 No citable units founds
PL29_2_PRÆ.xml Divina Bibliotheca 25-99 None Jacques Paul Migne Garnier 1863 No citable units founds
PL29_3_VET.xml Divina Bibliotheca 25-99 None Jacques Paul Migne Garnier 1863 No citable units founds
PL29_4_.xml Divina Bibliotheca 25-99 None Jacques Paul Migne Garnier 1863 No citable units founds
PL29_5_ADM.xml Divina Bibliotheca 25-99 None Jacques Paul Migne Garnier 1863 No citable units founds
PL29_6_a P.xml Divina Bibliotheca 25-99 None Jacques Paul Migne Garnier 1863 No citable units founds
PL29_7_a P.xml Divina Bibliotheca 25-99 None Jacques Paul Migne Garnier 1863 No citable units founds
PL29_8_APP.xml Divina Bibliotheca 25-99 None Jacques Paul Migne Garnier 1863 No citable units founds
PL29_9_.xml Divina Bibliotheca 25-99 None Jacques Paul Migne Garnier 1863 No citable units founds
PL29_10_IN.xml Divina Bibliotheca 25-99 None Jacques Paul Migne Garnier 1863 No citable units founds
PL29_11_S..xml Divina Bibliotheca 25-99 None Jacques Paul Migne Garnier 1863 No citable units founds
PL29_12_IN.xml Divina Bibliotheca 25-99 None Jacques Paul Migne Garnier 1863 No citable units founds
PL29_13_IN.xml Divina Bibliotheca 25-99 None Jacques Paul Migne Garnier 1863 No citable units founds
PL29_14_IN.xml Divina Bibliotheca 25-99 None Jacques Paul Migne Garnier 1863 No citable units founds
PL29_15_IN.xml Divina Bibliotheca 25-99 None Jacques Paul Migne Garnier 1863 No citable units founds
PL29_16_S..xml Divina Bibliotheca 25-99 None Jacques Paul Migne Garnier 1863 No citable units founds
PL29_17_B..xml Divina Bibliotheca 25-99 None Jacques Paul Migne Garnier 1863 No citable units founds
PL29_18_B..xml Divina Bibliotheca 25-99 None Jacques Paul Migne Garnier 1863 No citable units founds
PL29_19_B..xml Divina Bibliotheca 25-99 None Jacques Paul Migne Garnier 1863 No citable units founds
PL29_20_B..xml Divina Bibliotheca 25-99 None Jacques Paul Migne Garnier 1863 No citable units founds
PL29_21_B..xml Divina Bibliotheca 25-99 None Jacques Paul Migne Garnier 1863 No citable units founds
PL29_22_B..xml Divina Bibliotheca 25-99 None Jacques Paul Migne Garnier 1863 No citable units founds
PL29_23_B..xml Divina Bibliotheca 25-99 None Jacques Paul Migne Garnier 1863 No citable units founds
PL29_24_8..xml Divina Bibliotheca 25-99 None Jacques Paul Migne Garnier 1863 No citable units founds
PL29_25_B..xml Divina Bibliotheca 25-99 None Jacques Paul Migne Garnier 1863 No citable units founds
PL29_26_8..xml Divina Bibliotheca 25-99 None Jacques Paul Migne Garnier 1863 No citable units founds
PL29_27_s..xml Divina Bibliotheca 25-99 None Jacques Paul Migne Garnier 1863 No citable units founds
PL29_28_8..xml Divina Bibliotheca 25-99 None Jacques Paul Migne Garnier 1863 No citable units founds
PL29_29_I!.xml Divina Bibliotheca 25-99 None Jacques Paul Migne Garnier 1863 No citable units founds
PL29_30_8..xml Divina Bibliotheca 25-99 None Jacques Paul Migne Garnier 1863 No citable units founds
PL29_31_° .xml Divina Bibliotheca 25-99 None Jacques Paul Migne Garnier 1863 No citable units founds
PL29_32_B..xml Divina Bibliotheca 25-99 None Jacques Paul Migne Garnier 1863 No citable units founds
PL29_33_8..xml Divina Bibliotheca 25-99 None Jacques Paul Migne Garnier 1863 No citable units founds
PL29_34_8..xml Divina Bibliotheca 25-99 None Jacques Paul Migne Garnier 1863 No citable units founds
PL29_35_B..xml Divina Bibliotheca 25-99 None Jacques Paul Migne Garnier 1863 No citable units founds
PL29_36_8..xml Divina Bibliotheca 25-99 None Jacques Paul Migne Garnier 1863 No citable units founds
PL29_37_B..xml Divina Bibliotheca 25-99 None Jacques Paul Migne Garnier 1863 No citable units founds
PL29_38_s..xml Divina Bibliotheca 25-99 None Jacques Paul Migne Garnier 1863 No citable units founds
PL29_39_B..xml Divina Bibliotheca 25-99 None Jacques Paul Migne Garnier 1863 No citable units founds
PL29_40_AP.xml Divina Bibliotheca 25-99 None Jacques Paul Migne Garnier 1863 No citable units founds
PL29_41_AD.xml Divina Bibliotheca 25-99 None Jacques Paul Migne Garnier 1863 No citable units founds
PL29_42_.xml Divina Bibliotheca 25-99 None Jacques Paul Migne Garnier 1863 No citable units founds
PL30_0_.xml Epistolae None Jacques Paul Migne Garnier 1865 No citable units founds
PL30_1_CAT.xml Epistolae None Jacques Paul Migne Garnier 1865 No citable units founds
PL30_2_AD .xml Epistolae None Jacques Paul Migne Garnier 1865 No citable units founds
PL30_3_REG.xml Epistolae None Jacques Paul Migne Garnier 1865 No citable units founds
PL30_4_APP.xml Epistolae None Jacques Paul Migne Garnier 1865 No citable units founds
PL30_5_EJU.xml Epistolae None Jacques Paul Migne Garnier 1865 No citable units founds
PL30_6_REG.xml Epistolae None Jacques Paul Migne Garnier 1865 No citable units founds
PL30_7_CAN.xml Epistolae None Jacques Paul Migne Garnier 1865 No citable units founds
PL30_8_MAR.xml Epistolae None Jacques Paul Migne Garnier 1865 No citable units founds
PL30_9_In .xml Epistolae None Jacques Paul Migne Garnier 1865 No citable units founds
PL30_10_IN.xml Epistolae None Jacques Paul Migne Garnier 1865 No citable units founds
PL30_11_S..xml Epistolae None Jacques Paul Migne Garnier 1865 No citable units founds
PL30_12_CO.xml Epistolae None Jacques Paul Migne Garnier 1865 No citable units founds
PL30_13_PR.xml Epistolae None Jacques Paul Migne Garnier 1865 No citable units founds
PL30_14_CO.xml Epistolae None Jacques Paul Migne Garnier 1865 No citable units founds
PL30_15_OM.xml Epistolae None Jacques Paul Migne Garnier 1865 No citable units founds
PL30_16_IN.xml Epistolae None Jacques Paul Migne Garnier 1865 No citable units founds
PL30_17_OR.xml Epistolae None Jacques Paul Migne Garnier 1865 No citable units founds
PL31_0_CHR.xml None None None None None section
PL31_1_UNK.xml None None None None None section, p
PL31_2_APP.xml None None None None None section
PL31_3_APO.xml None None None None None chapter, section
PL31_4_ORO.xml None None None None None p
PL31_5_LEP.xml None None None None None section, p
PL31_6_UNK.xml None None None None None No citable units founds
PL32_0_S. .xml Soliloquiorum Libri Duo None Jacques Paul Migne Garnier 1877 No citable units founds
PL32_1_S. .xml Soliloquiorum Libri Duo None Jacques Paul Migne Garnier 1877 No citable units founds
PL32_2_S. .xml Soliloquiorum Libri Duo None Jacques Paul Migne Garnier 1877 No citable units founds
PL32_3_S. .xml Soliloquiorum Libri Duo None Jacques Paul Migne Garnier 1877 No citable units founds
PL32_4_S. .xml Soliloquiorum Libri Duo None Jacques Paul Migne Garnier 1877 No citable units founds
PL32_5_S. .xml Soliloquiorum Libri Duo None Jacques Paul Migne Garnier 1877 No citable units founds
PL32_6_S. .xml Soliloquiorum Libri Duo None Jacques Paul Migne Garnier 1877 No citable units founds
PL32_7_S. .xml Soliloquiorum Libri Duo None Jacques Paul Migne Garnier 1877 No citable units founds
PL32_8_App.xml Soliloquiorum Libri Duo None Jacques Paul Migne Garnier 1877 No citable units founds
PL32_9_DE .xml Soliloquiorum Libri Duo None Jacques Paul Migne Garnier 1877 No citable units founds
PL32_10_PR.xml Soliloquiorum Libri Duo None Jacques Paul Migne Garnier 1877 No citable units founds
PL32_11_CA.xml Soliloquiorum Libri Duo None Jacques Paul Migne Garnier 1877 No citable units founds
PL32_12_PR.xml Soliloquiorum Libri Duo None Jacques Paul Migne Garnier 1877 No citable units founds
PL32_13_RE.xml Soliloquiorum Libri Duo None Jacques Paul Migne Garnier 1877 No citable units founds
PL32_14_RE.xml Soliloquiorum Libri Duo None Jacques Paul Migne Garnier 1877 No citable units founds
PL32_15_DE.xml Soliloquiorum Libri Duo None Jacques Paul Migne Garnier 1877 No citable units founds
PL34_0_S. .xml De Doctrina Christiana Libri Quatuor. Admonitio None Jacques Paul Migne Garnier 1841 No citable units founds
PL34_1_S. .xml De Doctrina Christiana Libri Quatuor. Admonitio None Jacques Paul Migne Garnier 1841 No citable units founds
PL34_2_S. .xml De Doctrina Christiana Libri Quatuor. Admonitio None Jacques Paul Migne Garnier 1841 No citable units founds
PL34_3_S. .xml De Doctrina Christiana Libri Quatuor. Admonitio None Jacques Paul Migne Garnier 1841 No citable units founds
PL35_0_S. .xml Quaestionum Evangeliorum Libri Duo None Jacques Paul Migne Garnier 1845 No citable units founds
PL35_1_QUÆ.xml Quaestionum Evangeliorum Libri Duo None Jacques Paul Migne Garnier 1845 No citable units founds
PL35_2_PRÆ.xml Quaestionum Evangeliorum Libri Duo None Jacques Paul Migne Garnier 1845 No citable units founds
PL35_3_S. .xml Quaestionum Evangeliorum Libri Duo None Jacques Paul Migne Garnier 1845 No citable units founds
PL35_4_S. .xml Quaestionum Evangeliorum Libri Duo None Jacques Paul Migne Garnier 1845 No citable units founds
PL35_5_S. .xml Quaestionum Evangeliorum Libri Duo None Jacques Paul Migne Garnier 1845 No citable units founds
PL35_6_S. .xml Quaestionum Evangeliorum Libri Duo None Jacques Paul Migne Garnier 1845 No citable units founds
PL35_7_S. .xml Quaestionum Evangeliorum Libri Duo None Jacques Paul Migne Garnier 1845 No citable units founds
PL35_8_. A.xml Quaestionum Evangeliorum Libri Duo None Jacques Paul Migne Garnier 1845 No citable units founds
PL35_9_DE .xml Quaestionum Evangeliorum Libri Duo None Jacques Paul Migne Garnier 1845 No citable units founds
PL35_10_DE.xml Quaestionum Evangeliorum Libri Duo None Jacques Paul Migne Garnier 1845 No citable units founds
PL35_11_.xml Quaestionum Evangeliorum Libri Duo None Jacques Paul Migne Garnier 1845 No citable units founds
PL35_12_EX.xml Quaestionum Evangeliorum Libri Duo None Jacques Paul Migne Garnier 1845 No citable units founds
PL36_0_SAN.xml Enarrationes in Psalmos (1-79) None Jacques Paul Migne Garnier 1845 No citable units founds
PL37_0_.xml Enarrationes in Psalmos (80-144) None Jacques Paul Migne Garnier 1865 No citable units founds
PL38_0_S. .xml Sermones Ad Populum. Classis I. De Scripturis None Jacques Paul Migne Garnier 1863 No citable units founds
PL38_1_S. .xml Sermones Ad Populum. Classis I. De Scripturis None Jacques Paul Migne Garnier 1863 No citable units founds
PL38_2_S. .xml Sermones Ad Populum. Classis I. De Scripturis None Jacques Paul Migne Garnier 1863 No citable units founds
PL39_0_S. .xml Sermones Ad Populum. Classis IIII. De Diversis None Jacques Paul Migne Garnier 1865 No citable units founds
PL39_1_UNK.xml Sermones Ad Populum. Classis IIII. De Diversis None Jacques Paul Migne Garnier 1865 No citable units founds
PL39_2_SER.xml Sermones Ad Populum. Classis IIII. De Diversis None Jacques Paul Migne Garnier 1865 No citable units founds
PL39_3_S. .xml Sermones Ad Populum. Classis IIII. De Diversis None Jacques Paul Migne Garnier 1865 No citable units founds
PL39_4_App.xml Sermones Ad Populum. Classis IIII. De Diversis None Jacques Paul Migne Garnier 1865 No citable units founds
PL39_5_App.xml Sermones Ad Populum. Classis IIII. De Diversis None Jacques Paul Migne Garnier 1865 No citable units founds
PL39_6_App.xml Sermones Ad Populum. Classis IIII. De Diversis None Jacques Paul Migne Garnier 1865 No citable units founds
PL39_7_App.xml Sermones Ad Populum. Classis IIII. De Diversis None Jacques Paul Migne Garnier 1865 No citable units founds
PL39_8_IND.xml Sermones Ad Populum. Classis IIII. De Diversis None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_0_S. .xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_1_DE .xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_2_S. .xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_3_S. .xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_4_S. .xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_5_S. .xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_6_S. .xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_7_S. .xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_8_S. .xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_9_DE .xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_10_DE.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_11_DE.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_12_S..xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_13_S..xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_14_UN.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_15_DE.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_16_SE.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_17_S..xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_18_S..xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_19_UN.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_20_VI.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_21_DI.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_22_DE.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_23_DE.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_24_DE.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_25_DE.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_26_DE.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_27_SO.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_28_ME.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_29_DE.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_30_MA.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_31_SP.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_32_SP.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_33_DE.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_34_SC.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_35_CO.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_36_DE.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_37_LI.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_38_DE.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_39_TR.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_40_DE.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_41_DE.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_42_DE.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_43_DE.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_44_PS.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_45_Ca.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_46_DE.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_47_.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_48_DE.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_49_DE.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_50_SE.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_51_SE.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_52_SE.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_53_SE.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_54_SE.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_55_SE.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_56_TR.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_57_SE.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_58_SE.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_59_SE.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_60_SE.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_61_TR.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_62_TR.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_63_SE.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_64_TR.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_65_MI.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL40_66_SE.xml De Diversis Quaestionibus LXXXIII Liber Unus None Jacques Paul Migne Garnier 1865 No citable units founds
PL41_0_UNK.xml None None None None None No citable units founds
PL41_1_Int.xml None None None None None No citable units founds
PL41_2_EPI.xml None None None None None No citable units founds
PL41_3_UNK.xml None None None None None No citable units founds
PL41_4_EPI.xml None None None None None No citable units founds
PL41_5_SCR.xml None None None None None No citable units founds
PL41_6_EPI.xml None None None None None No citable units founds
PL41_7_UNK.xml None None None None None No citable units founds
PL41_8_DE .xml None None None None None book
PL42_0_ADM.xml De Haeresibus None Jacques Paul Migne Garnier 1841 No citable units founds
PL42_1_S. .xml De Haeresibus None Jacques Paul Migne Garnier 1841 No citable units founds
PL42_2_S. .xml De Haeresibus None Jacques Paul Migne Garnier 1841 No citable units founds
PL42_3_, .xml De Haeresibus None Jacques Paul Migne Garnier 1841 No citable units founds
PL42_4_IN .xml De Haeresibus None Jacques Paul Migne Garnier 1841 No citable units founds
PL42_5_S. .xml De Haeresibus None Jacques Paul Migne Garnier 1841 No citable units founds
PL42_6_IN .xml De Haeresibus None Jacques Paul Migne Garnier 1841 No citable units founds
PL42_7_CON.xml De Haeresibus None Jacques Paul Migne Garnier 1841 No citable units founds
PL42_8_S. .xml De Haeresibus None Jacques Paul Migne Garnier 1841 No citable units founds
PL42_9_AUG.xml De Haeresibus None Jacques Paul Migne Garnier 1841 No citable units founds
PL42_10_Se.xml De Haeresibus None Jacques Paul Migne Garnier 1841 No citable units founds
PL42_11_S..xml De Haeresibus None Jacques Paul Migne Garnier 1841 No citable units founds
PL42_12_S..xml De Haeresibus None Jacques Paul Migne Garnier 1841 No citable units founds
PL42_13_S..xml De Haeresibus None Jacques Paul Migne Garnier 1841 No citable units founds
PL42_14_S..xml De Haeresibus None Jacques Paul Migne Garnier 1841 No citable units founds
PL42_15_UN.xml De Haeresibus None Jacques Paul Migne Garnier 1841 No citable units founds
PL42_16_AD.xml De Haeresibus None Jacques Paul Migne Garnier 1841 No citable units founds
PL42_17_CO.xml De Haeresibus None Jacques Paul Migne Garnier 1841 No citable units founds
PL42_18_DE.xml De Haeresibus None Jacques Paul Migne Garnier 1841 No citable units founds
PL42_19_CO.xml De Haeresibus None Jacques Paul Migne Garnier 1841 No citable units founds
PL42_20_CO.xml De Haeresibus None Jacques Paul Migne Garnier 1841 No citable units founds
PL42_21_QU.xml De Haeresibus None Jacques Paul Migne Garnier 1841 No citable units founds
PL42_22_DE.xml De Haeresibus None Jacques Paul Migne Garnier 1841 No citable units founds
PL42_23_DE.xml De Haeresibus None Jacques Paul Migne Garnier 1841 No citable units founds
PL42_24_DE.xml De Haeresibus None Jacques Paul Migne Garnier 1841 No citable units founds
PL42_25_DE.xml De Haeresibus None Jacques Paul Migne Garnier 1841 No citable units founds
PL42_26_DE.xml De Haeresibus None Jacques Paul Migne Garnier 1841 No citable units founds
PL43_0_IN .xml Ad Donatistas Post Collationem. Retractatio None Jacques Paul Migne Garnier 1865 No citable units founds
PL43_1_s. .xml Ad Donatistas Post Collationem. Retractatio None Jacques Paul Migne Garnier 1865 No citable units founds
PL43_2_SER.xml Ad Donatistas Post Collationem. Retractatio None Jacques Paul Migne Garnier 1865 No citable units founds
PL43_3_UNK.xml Ad Donatistas Post Collationem. Retractatio None Jacques Paul Migne Garnier 1865 No citable units founds
PL43_4_EXC.xml Ad Donatistas Post Collationem. Retractatio None Jacques Paul Migne Garnier 1865 No citable units founds
PL44_0_S. .xml De Perfectione Justitiae Hominis. Admonitio None Jacques Paul Migne Garnier 1865 No citable units founds
PL44_1_S. .xml De Perfectione Justitiae Hominis. Admonitio None Jacques Paul Migne Garnier 1865 No citable units founds
PL44_2_S. .xml De Perfectione Justitiae Hominis. Admonitio None Jacques Paul Migne Garnier 1865 No citable units founds
PL44_3_EPI.xml De Perfectione Justitiae Hominis. Admonitio None Jacques Paul Migne Garnier 1865 No citable units founds
PL44_4_S. .xml De Perfectione Justitiae Hominis. Admonitio None Jacques Paul Migne Garnier 1865 No citable units founds
PL44_5_S. .xml De Perfectione Justitiae Hominis. Admonitio None Jacques Paul Migne Garnier 1865 No citable units founds
PL44_6_IN .xml De Perfectione Justitiae Hominis. Admonitio None Jacques Paul Migne Garnier 1865 No citable units founds
PL44_7_AUG.xml De Perfectione Justitiae Hominis. Admonitio None Jacques Paul Migne Garnier 1865 No citable units founds
PL44_8_S. .xml De Perfectione Justitiae Hominis. Admonitio None Jacques Paul Migne Garnier 1865 No citable units founds
PL44_9_IN .xml De Perfectione Justitiae Hominis. Admonitio None Jacques Paul Migne Garnier 1865 No citable units founds
PL44_10_VA.xml De Perfectione Justitiae Hominis. Admonitio None Jacques Paul Migne Garnier 1865 No citable units founds
PL44_11_S..xml De Perfectione Justitiae Hominis. Admonitio None Jacques Paul Migne Garnier 1865 No citable units founds
PL44_12_EP.xml De Perfectione Justitiae Hominis. Admonitio None Jacques Paul Migne Garnier 1865 No citable units founds
PL44_13_EP.xml De Perfectione Justitiae Hominis. Admonitio None Jacques Paul Migne Garnier 1865 No citable units founds
PL44_14_S..xml De Perfectione Justitiae Hominis. Admonitio None Jacques Paul Migne Garnier 1865 No citable units founds
PL45_0_S. .xml De Dono Perseverantiae None Jacques Paul Migne Garnier 1865 No citable units founds
PL45_1_S. .xml De Dono Perseverantiae None Jacques Paul Migne Garnier 1865 No citable units founds
PL45_2_APP.xml De Dono Perseverantiae None Jacques Paul Migne Garnier 1865 No citable units founds
PL45_3_HYP.xml De Dono Perseverantiae None Jacques Paul Migne Garnier 1865 No citable units founds
PL46_0_UNK.xml None None None None None sermo, section, p
PL46_1_SAN.xml None None None None None chapter
PL47_0_UNK.xml None None None None None No citable units founds
PL47_1_UNK.xml None None None None None No citable units founds
PL47_2_UNK.xml None None None None None No citable units founds
PL47_3_UNK.xml None None None None None No citable units founds
PL47_4_SAN.xml None None None None None No citable units founds
PL47_5_UNK.xml None None None None None sermo, section
PL47_6_SOL.xml None None None None None section
PL47_7_SER.xml None None None None None section
PL48_0_MAR.xml None None None None None section, p
PL48_1_UNK.xml None None None None None chapter, section, p
PL48_2_MAR.xml None None None None None section
PL48_3_I.xml None None None None None section, p
PL48_4_II..xml None None None None None section, p
PL48_5_III.xml None None None None None section, p
PL48_6_APP.xml None None None None None section, p
PL48_7_FID.xml None None None None None p
PL48_8_LIB.xml None None None None None sermo, p
PL48_9_EXC.xml None None None None None section
PL48_10_SY.xml None None None None None section
PL48_11_CO.xml None None None None None p
PL48_12_CO.xml None None None None None section, p
PL48_13_CO.xml None None None None None No citable units founds
PL48_14_LI.xml None None None None None section
PL48_15_NE.xml None None None None None p
PL48_16_AD.xml None None None None None No citable units founds
PL48_17_SA.xml None None None None None No citable units founds
PL48_18_SA.xml None None None None None No citable units founds
PL48_19_AD.xml None None None None None No citable units founds
PL48_20_SA.xml None None None None None section
PL48_21_LI.xml None None None None None section
PL48_22_I..xml None None None None None section, p
PL48_23_TH.xml None None None None None section, p
PL48_24_II.xml None None None None None section
PL48_25_EX.xml None None None None None section, chapter
PL48_26_II.xml None None None None None section
PL49_0_EPI.xml Epistolas Castoris Aptensis Episcopi ad Cassianum Abbatem Massiliensem None Jacques Paul Migne Garnier 1874 No citable units founds
PL50_0_UNK.xml Paucae Quaedam Sententiae Piam Interpretationem Desiderantes None Jacques Paul Migne Garnier 1846 No citable units founds
PL50_1_UNK.xml Paucae Quaedam Sententiae Piam Interpretationem Desiderantes None Jacques Paul Migne Garnier 1846 No citable units founds
PL50_2_.xml Paucae Quaedam Sententiae Piam Interpretationem Desiderantes None Jacques Paul Migne Garnier 1846 No citable units founds
PL50_3_VIG.xml Paucae Quaedam Sententiae Piam Interpretationem Desiderantes None Jacques Paul Migne Garnier 1846 No citable units founds
PL50_4_AMO.xml Paucae Quaedam Sententiae Piam Interpretationem Desiderantes None Jacques Paul Migne Garnier 1846 No citable units founds
PL50_5_ANT.xml Paucae Quaedam Sententiae Piam Interpretationem Desiderantes None Jacques Paul Migne Garnier 1846 No citable units founds
PL50_6_XYS.xml Paucae Quaedam Sententiae Piam Interpretationem Desiderantes None Jacques Paul Migne Garnier 1846 No citable units founds
PL50_7_UNK.xml Paucae Quaedam Sententiae Piam Interpretationem Desiderantes None Jacques Paul Migne Garnier 1846 No citable units founds
PL50_8_SEC.xml Paucae Quaedam Sententiae Piam Interpretationem Desiderantes None Jacques Paul Migne Garnier 1846 No citable units founds
PL50_9_UNK.xml Paucae Quaedam Sententiae Piam Interpretationem Desiderantes None Jacques Paul Migne Garnier 1846 No citable units founds
PL50_10_SA.xml Paucae Quaedam Sententiae Piam Interpretationem Desiderantes None Jacques Paul Migne Garnier 1846 No citable units founds
PL50_11_SA.xml Paucae Quaedam Sententiae Piam Interpretationem Desiderantes None Jacques Paul Migne Garnier 1846 No citable units founds
PL50_12_SA.xml Paucae Quaedam Sententiae Piam Interpretationem Desiderantes None Jacques Paul Migne Garnier 1846 No citable units founds
PL50_13_UN.xml Paucae Quaedam Sententiae Piam Interpretationem Desiderantes None Jacques Paul Migne Garnier 1846 No citable units founds
PL50_14_UN.xml Paucae Quaedam Sententiae Piam Interpretationem Desiderantes None Jacques Paul Migne Garnier 1846 No citable units founds
PL50_15_aE.xml Paucae Quaedam Sententiae Piam Interpretationem Desiderantes None Jacques Paul Migne Garnier 1846 No citable units founds
PL50_16_SA.xml Paucae Quaedam Sententiae Piam Interpretationem Desiderantes None Jacques Paul Migne Garnier 1846 No citable units founds
PL50_17_a .xml Paucae Quaedam Sententiae Piam Interpretationem Desiderantes None Jacques Paul Migne Garnier 1846 No citable units founds
PL50_18_ME.xml Paucae Quaedam Sententiae Piam Interpretationem Desiderantes None Jacques Paul Migne Garnier 1846 No citable units founds
PL51_0_S. .xml Epistola Ad Augustinum None Jacques Paul Migne Garnier 1846 No citable units founds
PL51_1_S. .xml Epistola Ad Augustinum None Jacques Paul Migne Garnier 1846 No citable units founds
PL51_2_S. .xml Epistola Ad Augustinum None Jacques Paul Migne Garnier 1846 No citable units founds
PL51_3_S. .xml Epistola Ad Augustinum None Jacques Paul Migne Garnier 1846 No citable units founds
PL51_4_S. .xml Epistola Ad Augustinum None Jacques Paul Migne Garnier 1846 No citable units founds
PL51_5_S. .xml Epistola Ad Augustinum None Jacques Paul Migne Garnier 1846 No citable units founds
PL51_6_ADM.xml Epistola Ad Augustinum None Jacques Paul Migne Garnier 1846 No citable units founds
PL51_7_S. .xml Epistola Ad Augustinum None Jacques Paul Migne Garnier 1846 No citable units founds
PL51_8_S. .xml Epistola Ad Augustinum None Jacques Paul Migne Garnier 1846 No citable units founds
PL51_9_S. .xml Epistola Ad Augustinum None Jacques Paul Migne Garnier 1846 No citable units founds
PL51_10_S..xml Epistola Ad Augustinum None Jacques Paul Migne Garnier 1846 No citable units founds
PL51_11_AD.xml Epistola Ad Augustinum None Jacques Paul Migne Garnier 1846 No citable units founds
PL51_12_S..xml Epistola Ad Augustinum None Jacques Paul Migne Garnier 1846 No citable units founds
PL51_13_AD.xml Epistola Ad Augustinum None Jacques Paul Migne Garnier 1846 No citable units founds
PL51_14_S..xml Epistola Ad Augustinum None Jacques Paul Migne Garnier 1846 No citable units founds
PL51_15_S..xml Epistola Ad Augustinum None Jacques Paul Migne Garnier 1846 No citable units founds
PL51_16_S..xml Epistola Ad Augustinum None Jacques Paul Migne Garnier 1846 No citable units founds
PL51_17_I..xml Epistola Ad Augustinum None Jacques Paul Migne Garnier 1846 No citable units founds
PL51_18_AP.xml Epistola Ad Augustinum None Jacques Paul Migne Garnier 1846 No citable units founds
PL51_19_SA.xml Epistola Ad Augustinum None Jacques Paul Migne Garnier 1846 No citable units founds
PL51_20_CO.xml Epistola Ad Augustinum None Jacques Paul Migne Garnier 1846 No citable units founds
PL51_21_AD.xml Epistola Ad Augustinum None Jacques Paul Migne Garnier 1846 No citable units founds
PL51_22_PO.xml Epistola Ad Augustinum None Jacques Paul Migne Garnier 1846 No citable units founds
PL51_23_AD.xml Epistola Ad Augustinum None Jacques Paul Migne Garnier 1846 No citable units founds
PL51_24_a .xml Epistola Ad Augustinum None Jacques Paul Migne Garnier 1846 No citable units founds
PL51_25_LI.xml Epistola Ad Augustinum None Jacques Paul Migne Garnier 1846 No citable units founds
PL51_26_AP.xml Epistola Ad Augustinum None Jacques Paul Migne Garnier 1846 No citable units founds
PL51_27_CO.xml Epistola Ad Augustinum None Jacques Paul Migne Garnier 1846 No citable units founds
PL51_28_IN.xml Epistola Ad Augustinum None Jacques Paul Migne Garnier 1846 No citable units founds
PL51_29_CH.xml Epistola Ad Augustinum None Jacques Paul Migne Garnier 1846 No citable units founds
PL51_30_ID.xml Epistola Ad Augustinum None Jacques Paul Migne Garnier 1846 No citable units founds
PL51_31_ID.xml Epistola Ad Augustinum None Jacques Paul Migne Garnier 1846 No citable units founds
PL51_32_MA.xml Epistola Ad Augustinum None Jacques Paul Migne Garnier 1846 No citable units founds
PL52_0_S. .xml Sermones None Jacques Paul Migne Garnier 1894 No citable units founds
PL52_1_APP.xml Sermones None Jacques Paul Migne Garnier 1894 No citable units founds
PL52_2_SAN.xml Sermones None Jacques Paul Migne Garnier 1894 No citable units founds
PL52_3_S. .xml Sermones None Jacques Paul Migne Garnier 1894 No citable units founds
PL52_4_S. .xml Sermones None Jacques Paul Migne Garnier 1894 No citable units founds
PL52_5_NIC.xml Sermones None Jacques Paul Migne Garnier 1894 No citable units founds
PL52_6_SAN.xml Sermones None Jacques Paul Migne Garnier 1894 No citable units founds
PL52_7_SAN.xml Sermones None Jacques Paul Migne Garnier 1894 No citable units founds
PL52_8_SAN.xml Sermones None Jacques Paul Migne Garnier 1894 No citable units founds
PL52_9_EJU.xml Sermones None Jacques Paul Migne Garnier 1894 No citable units founds
PL52_10_AP.xml Sermones None Jacques Paul Migne Garnier 1894 No citable units founds
PL53_0_SAL.xml Adversus Avaritiam Libri Quatuor None Jacques Paul Migne Garnier 1865 No citable units founds
PL53_1_ARN.xml Adversus Avaritiam Libri Quatuor None Jacques Paul Migne Garnier 1865 No citable units founds
PL53_2_ARN.xml Adversus Avaritiam Libri Quatuor None Jacques Paul Migne Garnier 1865 No citable units founds
PL53_3_DE .xml Adversus Avaritiam Libri Quatuor None Jacques Paul Migne Garnier 1865 No citable units founds
PL53_4_ARN.xml Adversus Avaritiam Libri Quatuor None Jacques Paul Migne Garnier 1865 No citable units founds
PL53_5_ANN.xml Adversus Avaritiam Libri Quatuor None Jacques Paul Migne Garnier 1865 No citable units founds
PL53_6_PRÆ.xml Adversus Avaritiam Libri Quatuor None Jacques Paul Migne Garnier 1865 No citable units founds
PL53_7_MAM.xml Adversus Avaritiam Libri Quatuor None Jacques Paul Migne Garnier 1865 No citable units founds
PL53_8_CAR.xml Adversus Avaritiam Libri Quatuor None Jacques Paul Migne Garnier 1865 No citable units founds
PL53_9_ANN.xml Adversus Avaritiam Libri Quatuor None Jacques Paul Migne Garnier 1865 No citable units founds
PL53_10_a .xml Adversus Avaritiam Libri Quatuor None Jacques Paul Migne Garnier 1865 No citable units founds
PL53_11_SY.xml Adversus Avaritiam Libri Quatuor None Jacques Paul Migne Garnier 1865 No citable units founds
PL53_12_CA.xml Adversus Avaritiam Libri Quatuor None Jacques Paul Migne Garnier 1865 No citable units founds
PL53_13_SY.xml Adversus Avaritiam Libri Quatuor None Jacques Paul Migne Garnier 1865 No citable units founds
PL53_14_CA.xml Adversus Avaritiam Libri Quatuor None Jacques Paul Migne Garnier 1865 No citable units founds
PL53_15_PR.xml Adversus Avaritiam Libri Quatuor None Jacques Paul Migne Garnier 1865 No citable units founds
PL53_16_CH.xml Adversus Avaritiam Libri Quatuor None Jacques Paul Migne Garnier 1865 No citable units founds
PL53_17_S..xml Adversus Avaritiam Libri Quatuor None Jacques Paul Migne Garnier 1865 No citable units founds
PL53_18_HY.xml Adversus Avaritiam Libri Quatuor None Jacques Paul Migne Garnier 1865 No citable units founds
PL53_19_CA.xml Adversus Avaritiam Libri Quatuor None Jacques Paul Migne Garnier 1865 No citable units founds
PL53_20_AN.xml Adversus Avaritiam Libri Quatuor None Jacques Paul Migne Garnier 1865 No citable units founds
PL53_21_UR.xml Adversus Avaritiam Libri Quatuor None Jacques Paul Migne Garnier 1865 No citable units founds
PL53_22_AN.xml Adversus Avaritiam Libri Quatuor None Jacques Paul Migne Garnier 1865 No citable units founds
PL53_23_EU.xml Adversus Avaritiam Libri Quatuor None Jacques Paul Migne Garnier 1865 No citable units founds
PL53_24_AN.xml Adversus Avaritiam Libri Quatuor None Jacques Paul Migne Garnier 1865 No citable units founds
PL53_25_SA.xml Adversus Avaritiam Libri Quatuor None Jacques Paul Migne Garnier 1865 No citable units founds
PL53_26_SA.xml Adversus Avaritiam Libri Quatuor None Jacques Paul Migne Garnier 1865 No citable units founds
PL53_27_CE.xml Adversus Avaritiam Libri Quatuor None Jacques Paul Migne Garnier 1865 No citable units founds
PL54_0_SER.xml Sermones In Praecupuis Totius Anni Festivitatibus Ad Romanam Plebem Habiti None Jacques Paul Migne Garnier 1846 No citable units founds
PL54_1_SER.xml Sermones In Praecupuis Totius Anni Festivitatibus Ad Romanam Plebem Habiti None Jacques Paul Migne Garnier 1846 No citable units founds
PL54_2_OBS.xml Sermones In Praecupuis Totius Anni Festivitatibus Ad Romanam Plebem Habiti None Jacques Paul Migne Garnier 1846 No citable units founds
PL54_3_SAN.xml Sermones In Praecupuis Totius Anni Festivitatibus Ad Romanam Plebem Habiti None Jacques Paul Migne Garnier 1846 No citable units founds
PL54_4_DE .xml Sermones In Praecupuis Totius Anni Festivitatibus Ad Romanam Plebem Habiti None Jacques Paul Migne Garnier 1846 No citable units founds
PL54_5_APP.xml Sermones In Praecupuis Totius Anni Festivitatibus Ad Romanam Plebem Habiti None Jacques Paul Migne Garnier 1846 No citable units founds
PL55_0_LIB.xml Liber Sacramentorum Romanae Ecclesiae None Jacques Paul Migne Garnier 1886 No citable units founds
PL55_1_MON.xml Liber Sacramentorum Romanae Ecclesiae None Jacques Paul Migne Garnier 1886 No citable units founds
PL55_2_a A.xml Liber Sacramentorum Romanae Ecclesiae None Jacques Paul Migne Garnier 1886 No citable units founds
PL55_3_ADM.xml Liber Sacramentorum Romanae Ecclesiae None Jacques Paul Migne Garnier 1886 No citable units founds
PL55_4_• E.xml Liber Sacramentorum Romanae Ecclesiae None Jacques Paul Migne Garnier 1886 No citable units founds
PL55_5_DE .xml Liber Sacramentorum Romanae Ecclesiae None Jacques Paul Migne Garnier 1886 No citable units founds
PL55_6_DE .xml Liber Sacramentorum Romanae Ecclesiae None Jacques Paul Migne Garnier 1886 No citable units founds
PL55_7_DE .xml Liber Sacramentorum Romanae Ecclesiae None Jacques Paul Migne Garnier 1886 No citable units founds
PL55_8_DE .xml Liber Sacramentorum Romanae Ecclesiae None Jacques Paul Migne Garnier 1886 No citable units founds
PL55_9_APP.xml Liber Sacramentorum Romanae Ecclesiae None Jacques Paul Migne Garnier 1886 No citable units founds
PL56_0_SAN.xml Sermones Inediti None Jacques Paul Migne Garnier 1846 No citable units founds
PL56_1_IND.xml Sermones Inediti None Jacques Paul Migne Garnier 1846 No citable units founds
PL57_0_SAN.xml Homiliae In Quatuor Classes Distributae None Jacques Paul Migne Garnier 1847 No citable units founds
PL57_1_SAN.xml Homiliae In Quatuor Classes Distributae None Jacques Paul Migne Garnier 1847 No citable units founds
PL57_2_ADD.xml Homiliae In Quatuor Classes Distributae None Jacques Paul Migne Garnier 1847 No citable units founds
PL57_3_SAN.xml Homiliae In Quatuor Classes Distributae None Jacques Paul Migne Garnier 1847 No citable units founds
PL57_4_SAN.xml Homiliae In Quatuor Classes Distributae None Jacques Paul Migne Garnier 1847 No citable units founds
PL57_5_APP.xml Homiliae In Quatuor Classes Distributae None Jacques Paul Migne Garnier 1847 No citable units founds
PL57_6_HOM.xml Homiliae In Quatuor Classes Distributae None Jacques Paul Migne Garnier 1847 No citable units founds
PL57_7_EPI.xml Homiliae In Quatuor Classes Distributae None Jacques Paul Migne Garnier 1847 No citable units founds
PL58_0_EPI.xml Epistolae None Jacques Paul Migne Garnier 1847 No citable units founds
PL58_1_DEC.xml Epistolae None Jacques Paul Migne Garnier 1847 No citable units founds
PL58_2_ANN.xml Epistolae None Jacques Paul Migne Garnier 1847 No citable units founds
PL58_3_EPI.xml Epistolae None Jacques Paul Migne Garnier 1847 No citable units founds
PL58_4_ANN.xml Epistolae None Jacques Paul Migne Garnier 1847 No citable units founds
PL58_5_SS..xml Epistolae None Jacques Paul Migne Garnier 1847 No citable units founds
PL58_6_ANN.xml Epistolae None Jacques Paul Migne Garnier 1847 No citable units founds
PL58_7_EPI.xml Epistolae None Jacques Paul Migne Garnier 1847 No citable units founds
PL58_8_UNK.xml Epistolae None Jacques Paul Migne Garnier 1847 No citable units founds
PL58_9_UNK.xml Epistolae None Jacques Paul Migne Garnier 1847 No citable units founds
PL58_10_TE.xml Epistolae None Jacques Paul Migne Garnier 1847 No citable units founds
PL58_11_a .xml Epistolae None Jacques Paul Migne Garnier 1847 No citable units founds
PL58_12_C..xml Epistolae None Jacques Paul Migne Garnier 1847 No citable units founds
PL58_13_CO.xml Epistolae None Jacques Paul Migne Garnier 1847 No citable units founds
PL58_14_SI.xml Epistolae None Jacques Paul Migne Garnier 1847 No citable units founds
PL58_15_AN.xml Epistolae None Jacques Paul Migne Garnier 1847 No citable units founds
PL58_16_TE.xml Epistolae None Jacques Paul Migne Garnier 1847 No citable units founds
PL58_17_EP.xml Epistolae None Jacques Paul Migne Garnier 1847 No citable units founds
PL58_18_AN.xml Epistolae None Jacques Paul Migne Garnier 1847 No citable units founds
PL58_19_CE.xml Epistolae None Jacques Paul Migne Garnier 1847 No citable units founds
PL58_20_EO.xml Epistolae None Jacques Paul Migne Garnier 1847 No citable units founds
PL58_21_PR.xml Epistolae None Jacques Paul Migne Garnier 1847 No citable units founds
PL58_22_EP.xml Epistolae None Jacques Paul Migne Garnier 1847 No citable units founds
PL58_23_FE.xml Epistolae None Jacques Paul Migne Garnier 1847 No citable units founds
PL58_24_GE.xml Epistolae None Jacques Paul Migne Garnier 1847 No citable units founds
PL58_25_LI.xml Epistolae None Jacques Paul Migne Garnier 1847 No citable units founds
PL59_0_GEL.xml Epistolae Et Decreta None Jacques Paul Migne Garnier 1847 No citable units founds
PL59_1_APP.xml Epistolae Et Decreta None Jacques Paul Migne Garnier 1847 No citable units founds
PL59_2_APP.xml Epistolae Et Decreta None Jacques Paul Migne Garnier 1847 No citable units founds
PL59_3_APP.xml Epistolae Et Decreta None Jacques Paul Migne Garnier 1847 No citable units founds
PL59_4_CON.xml Epistolae Et Decreta None Jacques Paul Migne Garnier 1847 No citable units founds
PL59_5_a 1.xml Epistolae Et Decreta None Jacques Paul Migne Garnier 1847 No citable units founds
PL59_6_a A.xml Epistolae Et Decreta None Jacques Paul Migne Garnier 1847 No citable units founds
PL59_7_ALC.xml Epistolae Et Decreta None Jacques Paul Migne Garnier 1847 No citable units founds
PL59_8_QUO.xml Epistolae Et Decreta None Jacques Paul Migne Garnier 1847 No citable units founds
PL59_9_SEN.xml Epistolae Et Decreta None Jacques Paul Migne Garnier 1847 No citable units founds
PL59_10_AD.xml Epistolae Et Decreta None Jacques Paul Migne Garnier 1847 No citable units founds
PL59_11_AD.xml Epistolae Et Decreta None Jacques Paul Migne Garnier 1847 No citable units founds
PL59_12_AD.xml Epistolae Et Decreta None Jacques Paul Migne Garnier 1847 No citable units founds
PL59_13_AD.xml Epistolae Et Decreta None Jacques Paul Migne Garnier 1847 No citable units founds
PL59_14_AP.xml Epistolae Et Decreta None Jacques Paul Migne Garnier 1847 No citable units founds
PL59_15_AD.xml Epistolae Et Decreta None Jacques Paul Migne Garnier 1847 No citable units founds
PL59_16_AD.xml Epistolae Et Decreta None Jacques Paul Migne Garnier 1847 No citable units founds
PL59_17_AD.xml Epistolae Et Decreta None Jacques Paul Migne Garnier 1847 No citable units founds
PL59_18_AD.xml Epistolae Et Decreta None Jacques Paul Migne Garnier 1847 No citable units founds
PL59_19_AD.xml Epistolae Et Decreta None Jacques Paul Migne Garnier 1847 No citable units founds
PL59_20_AL.xml Epistolae Et Decreta None Jacques Paul Migne Garnier 1847 No citable units founds
PL59_21_AD.xml Epistolae Et Decreta None Jacques Paul Migne Garnier 1847 No citable units founds
PL59_22_FR.xml Epistolae Et Decreta None Jacques Paul Migne Garnier 1847 No citable units founds
PL59_23_CO.xml Epistolae Et Decreta None Jacques Paul Migne Garnier 1847 No citable units founds
PL59_24_SE.xml Epistolae Et Decreta None Jacques Paul Migne Garnier 1847 No citable units founds
PL59_25_AN.xml Epistolae Et Decreta None Jacques Paul Migne Garnier 1847 No citable units founds
PL59_26_JO.xml Epistolae Et Decreta None Jacques Paul Migne Garnier 1847 No citable units founds
PL59_27_EX.xml Epistolae Et Decreta None Jacques Paul Migne Garnier 1847 No citable units founds
PL59_28_SA.xml Epistolae Et Decreta None Jacques Paul Migne Garnier 1847 No citable units founds
PL59_29_JU.xml Epistolae Et Decreta None Jacques Paul Migne Garnier 1847 No citable units founds
PL59_30_AN.xml Epistolae Et Decreta None Jacques Paul Migne Garnier 1847 No citable units founds
PL59_31_AN.xml Epistolae Et Decreta None Jacques Paul Migne Garnier 1847 No citable units founds
PL59_32_OR.xml Epistolae Et Decreta None Jacques Paul Migne Garnier 1847 No citable units founds
PL59_33_M..xml Epistolae Et Decreta None Jacques Paul Migne Garnier 1847 No citable units founds
PL60_0_TAB.xml Psychomachia None Jacques Paul Migne Garnier 1862 No citable units founds
PL60_1_PSY.xml Psychomachia None Jacques Paul Migne Garnier 1862 No citable units founds
PL60_2_DIT.xml Psychomachia None Jacques Paul Migne Garnier 1862 No citable units founds
PL60_3_.xml Psychomachia None Jacques Paul Migne Garnier 1862 No citable units founds
PL60_4_LIB.xml Psychomachia None Jacques Paul Migne Garnier 1862 No citable units founds
PL60_5_DRA.xml Psychomachia None Jacques Paul Migne Garnier 1862 No citable units founds
PL60_6_DRA.xml Psychomachia None Jacques Paul Migne Garnier 1862 No citable units founds
PL61_0_ANN.xml Carmen De Christo None Jacques Paul Migne Garnier 1861 No citable units founds
PL61_1_MER.xml Carmen De Christo None Jacques Paul Migne Garnier 1861 No citable units founds
PL61_2_ANN.xml Carmen De Christo None Jacques Paul Migne Garnier 1861 No citable units founds
PL61_3_ANN.xml Carmen De Christo None Jacques Paul Migne Garnier 1861 No citable units founds
PL61_4_EPI.xml Carmen De Christo None Jacques Paul Migne Garnier 1861 No citable units founds
PL61_5_INC.xml Carmen De Christo None Jacques Paul Migne Garnier 1861 No citable units founds
PL61_6_EXE.xml Carmen De Christo None Jacques Paul Migne Garnier 1861 No citable units founds
PL61_7_ÆGY.xml Carmen De Christo None Jacques Paul Migne Garnier 1861 No citable units founds
PL61_8_IN .xml Carmen De Christo None Jacques Paul Migne Garnier 1861 No citable units founds
PL61_9_EXE.xml Carmen De Christo None Jacques Paul Migne Garnier 1861 No citable units founds
PL61_10_DR.xml Carmen De Christo None Jacques Paul Migne Garnier 1861 No citable units founds
PL61_11_AU.xml Carmen De Christo None Jacques Paul Migne Garnier 1861 No citable units founds
PL61_12_S..xml Carmen De Christo None Jacques Paul Migne Garnier 1861 No citable units founds
PL62_0_ANN.xml De Spiritu Sancto Libri Duo None Jacques Paul Migne Garnier 1863 No citable units founds
PL62_1_PAS.xml De Spiritu Sancto Libri Duo None Jacques Paul Migne Garnier 1863 No citable units founds
PL62_2_SYM.xml De Spiritu Sancto Libri Duo None Jacques Paul Migne Garnier 1863 No citable units founds
PL62_3_PET.xml De Spiritu Sancto Libri Duo None Jacques Paul Migne Garnier 1863 No citable units founds
PL62_4_ANN.xml De Spiritu Sancto Libri Duo None Jacques Paul Migne Garnier 1863 No citable units founds