-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathContraErrGraecorum.htm
8648 lines (3287 loc) · 465 KB
/
ContraErrGraecorum.htm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Thomas Aquinas: Contra Errores Graecorum: English</title>
<script type="text/javascript" language="javascript">
var gAgent = navigator.userAgent.toLowerCase()
var gWindows = ((gAgent.indexOf("win") != -1) || (gAgent.indexOf("16bit") != -1))
var gIE = (gAgent.indexOf("msie") != -1)
var bInlineFloats = (gWindows && gIE && (parseInt(navigator.appVersion) >= 4))
var floatwnd = 0
var WPFootnote1 = '<span class="WPNormal"><p>Doctors: perhaps a reference to Origen, whom Thomas, <i>Super Boeth.<\/i> <i>De Trin.<\/i> q. 3, a.4, cites as\
a “source of Arius”.<\/p>\
<\/span>'
var WPFootnote2 = '<span class="WPNormal"><p>Augustine: <i>Retract.<\/i> 1 c. 13, par 5, and c. 15, par 2 (PL 32, 603 and 608); Peter Lombard, <i>II Sent<\/i>\
d 41, c 3, refers to both these passages.<\/p>\
<\/span>'
var WPFootnote3 = '<span class="WPNormal"><p>Cf. <i>S.T.<\/i>, I. q 29, a.2, ad 2.<\/p>\
<\/span>'
var WPFootnote4 = '<span class="WPNormal"><p><i>De Trin<\/i>. VII, 7 (PL 42, 939); cf. Peter Lombard <i>II Sent.<\/i> d 23, c 2.<\/p>\
<\/span>'
var WPFootnote5 = '<span class="WPNormal"><p>Thus, the <i>Libellus<\/i> 1, 1-2.<\/p>\
<\/span>'
var WPFootnote6 = '<span class="WPNormal"><p><i>Lib <\/i>7, 27-32 (source not found; however the comparisons to word, brightness and stream are\
found in Athanasius, <i>Oratio <\/i>II<i> contra<\/i> <i>Arium<\/i> n. 3 (PG 26, 32 B).<\/p>\
<\/span>'
var WPFootnote7 = '<span class="WPNormal"><p><i>Lib <\/i>10, 150-155 (not found).<\/p>\
<\/span>'
var WPFootnote8 = '<span class="WPNormal"><p>Basil: <i>Lib <\/i>64, 16-17,<i> <\/i>from <i>Adv. Eunom<\/i>, V additio (PG 29, 772 ?C); cf. <i>Lib<\/i> 70, 4-5 (not found).<\/p>\
<\/span>'
var WPFootnote9 = '<span class="WPNormal"><p>Thedoret: thus the <i>Lib<\/i> 90, 6; cf. Oecumenicus <i>Super Ep. Ad Heb<\/i>. 1 (PG 119, 281 D).<\/p>\
<\/span>'
var WPFootnote10 = '<span class="WPNormal"><p>Cf. <i>De Pot<\/i>. Q 10, a 1 ad 8 sqq.<\/p>\
<\/span>'
var WPFootnote11 = '<span class="WPNormal"><p>“This is the explanation of Augustine and also Origen”, says Thomas, commenting on this\
passage in <i>Lect. super Job,<\/i> citing Aug. <i>De Trin.<\/i> VI c. 2, and Origen <i>Super Job<\/i> (cf. PG 14, 49)\
according to the letter of the <i>Catena sup. Job<\/i> on this passage.<\/p>\
<\/span>'
var WPFootnote12 = '<span class="WPNormal"><p>Causa est communis… cf. Averroes, <i>Super Metaph.<\/i> V com. 4 (ed. Venice 1562, f. 105 FG), as\
cited by Thomas <i>Super Sent<\/i> 1, d 29, a. 1 ad 2.<\/p>\
<\/span>'
var WPFootnote13 = '<span class="WPNormal"><p><i>Lib<\/i> 29, 14-22, from <i>Quod non sunt tres<\/i> <i>dii<\/i> (PG 45, 133 C).<\/p>\
<\/span>'
var WPFootnote14 = '<span class="WPNormal"><p>Thus the <i>Lib<\/i> 69, 8-11 (not found).<\/p>\
<\/span>'
var WPFootnote15 = '<span class="WPNormal"><p><i>Lib<\/i> 15, 101-102 (not found).<\/p>\
<\/span>'
var WPFootnote16 = '<span class="WPNormal"><p><i>Lib<\/i> 56, 7-8. Such concedes Basil to Eunomius, <i>Adv. Eunom<\/i>. III nn 1&2 (PG 29, 656 A & 657\
C).<\/p>\
<\/span>'
var WPFootnote17 = '<span class="WPNormal"><p><i>Contra Maxim.<\/i> II c. 14 n.8 (PL 42, 775), cited by Peter Lombard <i>I Sent.<\/i> d. 20, c. 3.<\/p>\
<\/span>'
var WPFootnote18 = '<span class="WPNormal"><p>Simultaneously: cf. Thomas, <i>Super Sent.<\/i> 1, d 9, q 2, a 1, referring to\
<i> <\/i>Arist., <i>Praedic.<\/i> C 7 (7b, 15).<\/p>\
<\/span>'
var WPFootnote19 = '<span class="WPNormal"><p><i>Lib.<\/i> 57, 16-21, from <i>Adv. Eunom<\/i>. III (PG 29, 657 C), but so clumsily translated as to falsify the\
meaning; indeed the argument of Eunomius himself appears to be ascribed to Scripture and Basil.<\/p>\
<\/span>'
var WPFootnote20 = '<span class="WPNormal"><p><i>Lib.<\/i> 75, 6, from the <i>Ancoratus<\/i> n. 8 (PG 43, 29 C).<\/p>\
<\/span>'
var WPFootnote21 = '<span class="WPNormal"><p>Cf. Alex. of Hales, <i>Glossa in Lib. Sent<\/i>. 1, d. 23, n. 9.<\/p>\
<\/span>'
var WPFootnote22 = '<span class="WPNormal"><p><i>De Trin.<\/i> IX, n 54 (PL 10, 325 A, cited by Peter Lombard, <i>I Sent<\/i> d 16, c. 2.<\/p>\
<\/span>'
var WPFootnote23 = '<span class="WPNormal"><p><i>Lib.<\/i> 77, 34-35, from the <i>Ancoratus<\/i> n 71 (PG 43, 148 B).<\/p>\
<\/span>'
var WPFootnote24 = '<span class="WPNormal"><p>One light: cf. Aug. <i>De Trin<\/i>. VII, c 3 (PL 42, 939).<\/p>\
<\/span>'
var WPFootnote25 = '<span class="WPNormal"><p><i>Lib.<\/i> 77, 35-38, from the <i>Ancoratus<\/i>, 1.c.; “three lights”, however, which is not in the Greek text,\
being added by the compiler.<\/p>\
<\/span>'
var WPFootnote26 = '<span class="WPNormal"><p>Light: on light and lighting cf. Avicenna <i>De Anima<\/i> III, c 3 (Venice ed. 1508, f. 11 rb) and\
Thomas himself <i>Super De Anima<\/i> II, 14 (418 b 9).<\/p>\
<\/span>'
var WPFootnote27 = '<span class="WPNormal"><p>The aforementioned Fathers: none of these holy Fathers is the author of the ten glosses\
examined in this chapter; rather they express the theology of the <i>Libellus.<\/i><\/p>\
<\/span>'
var WPFootnote28 = '<span class="WPNormal"><p><i>Lib.<\/i> 4, 10-13 & 20-22 (not found).<\/p>\
<\/span>'
var WPFootnote29 = '<span class="WPNormal"><p><i>Lib. <\/i>15, 69-72 (not found).<\/p>\
<\/span>'
var WPFootnote30 = '<span class="WPNormal"><p><i>Lib.<\/i> 19, 74-78 & 82-85 (not found).<\/p>\
<\/span>'
var WPFootnote31 = '<span class="WPNormal"><p><i>Lib.<\/i> 45, 28-30 & 46, 67-68 (glosses of the compiler).<\/p>\
<\/span>'
var WPFootnote32 = '<span class="WPNormal"><p><i>Lib.<\/i> 71, 2-6 (not found).<\/p>\
<\/span>'
var WPFootnote33 = '<span class="WPNormal"><p><i>Lib.<\/i> 15, 110-111 (not found).<\/p>\
<\/span>'
var WPFootnote34 = '<span class="WPNormal"><p>Fourth Lateran Council, c. 2 (Mansi 22, 982).<\/p>\
<\/span>'
var WPFootnote35 = '<span class="WPNormal"><p>d. 5 per totam; cf. Thomas, <i>S.T. <\/i>1, q. 39, a. 4 & 5.<\/p>\
<\/span>'
var WPFootnote36 = '<span class="WPNormal"><p><i>Lib.<\/i> 45, 60-64 (gloss of the compiler).<\/p>\
<\/span>'
var WPFootnote37 = '<span class="WPNormal"><p><i>Lib.<\/i> 47, 29-30, enlarging on the <i>Thesaurus<\/i> ass. 33 (PG 75, 508 D); the Greek text of Cyril\
reads: he (the Son) is endowed with the divine dignity of the paternal essence.<\/p>\
<\/span>'
var WPFootnote38 = '<span class="WPNormal"><p>Proceed by essence: a phrase often used in the <i>Lib.,<\/i> namely by Pseudo-Athanasius, e.g., <i>Lib<\/i>.\
3, 14; 3, 19; 4, 11; 11, 57, etc.<\/p>\
<\/span>'
var WPFootnote39 = '<span class="WPNormal"><p><i>Lib.<\/i> 46, 67-68; cf. <i>Thesaurus<\/i> ass. 14 (PG 75, 244 D).<\/p>\
<\/span>'
var WPFootnote40 = '<span class="WPNormal"><p><i>Lib<\/i>. 46, 55-57; cf. <i>Thesaurus<\/i>, 1. c.<\/p>\
<\/span>'
var WPFootnote41 = '<span class="WPNormal"><p><i>Lib.<\/i> 12, 8-11; the remaining passages cited in this chapter are to be ascribed to the same Ps.-Athanasius.<\/p>\
<\/span>'
var WPFootnote42 = '<span class="WPNormal"><p><i>Lib.<\/i> 1, 7-14; cf. Thomas, <i>de Pot.<\/i> Q 10, a 1 resp.<\/p>\
<\/span>'
var WPFootnote43 = '<span class="WPNormal"><p><i>Lib.<\/i> 16, 84-88.<\/p>\
<\/span>'
var WPFootnote44 = '<span class="WPNormal"><p><i>Lib.<\/i> 15, 118-121.<\/p>\
<\/span>'
var WPFootnote45 = '<span class="WPNormal"><p><i>Lib.<\/i> 26, 15-16, a clumsy translation of <i>Oratio<\/i> 31 n. 8 (PG 36, 141B).<\/p>\
<\/span>'
var WPFootnote46 = '<span class="WPNormal"><p><i>De Synodis<\/i> nn 38 & 39 (PL 10, 512 B & 521 A); cf. Peter Lombard <i>I Sent<\/i> d 31m c 2).<\/p>\
<\/span>'
var WPFootnote47 = '<span class="WPNormal"><p><i>Lib.<\/i> 14, 5-10 (not found).<\/p>\
<\/span>'
var WPFootnote48 = '<span class="WPNormal"><p>Jerome: under his name Peter Lombard, <i>I Sent<\/i> d 13, c 4, quotes the saying of an anonymous\
writer whose work is included among those of Ambrose (PL 17, 510-512).<\/p>\
<\/span>'
var WPFootnote49 = '<span class="WPNormal"><p><i>Lib<\/i>. 26, 16.<\/p>\
<\/span>'
var WPFootnote50 = '<span class="WPNormal"><p><i>Lib<\/i>. 73, 5, from the <i>Ancoratus<\/i> n 8 (PG 43, 29 C).<\/p>\
<\/span>'
var WPFootnote51 = '<span class="WPNormal"><p><i>Lib<\/i>. 9, 46-51 (not found).<\/p>\
<\/span>'
var WPFootnote52 = '<span class="WPNormal"><p><i>Lib.<\/i> 15, 109-110 (not found).<\/p>\
<\/span>'
var WPFootnote53 = '<span class="WPNormal"><p><i>Lib<\/i>. 70, 5-8 (not found).<\/p>\
<\/span>'
var WPFootnote54 = '<span class="WPNormal"><p><i>Lib.<\/i> 71, 21-23.<\/p>\
<\/span>'
var WPFootnote55 = '<span class="WPNormal"><p>Among the Latins: nor among the better known Greek Fathers, who call “the Spirit image of\
the Son”, not “image of Father and Son”; cf. John Damascene <i>de fide orthod.<\/i> I, c 13 (PG 94, 856\
B).<\/p>\
<\/span>'
var WPFootnote56 = '<span class="WPNormal"><p><i>De Trin.<\/i> VI, c 2, n 3 (PL 42, 925). The citation can be read in Peter Lombard, <i>I Sent<\/i> d 27, c 3.<\/p>\
<\/span>'
var WPFootnote57 = '<span class="WPNormal"><p><i>De Trin<\/i>. VI, c 11 (PL 196, 856 B).<\/p>\
<\/span>'
var WPFootnote58 = '<span class="WPNormal"><p>Some: Albert the Great, <i>Super Sent.<\/i> 1, d 28, a 9; <i>Summa<\/i> <i>fr.<\/i> <i>Alexandri<\/i> 1 pars, n 418;\
Bonaventure, <i>Super Sent<\/i> 1, d 31, p 2, A 1, q 2.<\/p>\
<\/span>'
var WPFootnote59 = '<span class="WPNormal"><p>Greeks: for example Athanasius, <i>Epist. 1 ad Serap.<\/i> n 24 (PG 26, 588 B; <i>Lib<\/i>. 17, 52-54; Cyril\
of Alexandria, <i>Thesaurus <\/i>ass. 33 (PG 75, 569 B; <i>Lib.<\/i> 50, 2-3.<\/p>\
<\/span>'
var WPFootnote60 = '<span class="WPNormal"><p><i>Contra Maxim.<\/i> II, c 14, n 8 (PL 42, 775), in Peter Lombard <i>I Sent <\/i>d 20, c 3.<\/p>\
<\/span>'
var WPFootnote61 = '<span class="WPNormal"><p><i>Lib.<\/i> 19, 48-49, from the <i>Epist. I ad Serap.<\/i> (PG 26, 577 B). In his Father: thus the <i>Libellus<\/i>\
following certain codices of Athanasius; cf. PG, 1. c., note 75.<\/p>\
<\/span>'
var WPFootnote62 = '<span class="WPNormal"><p>Sometimes: cf. Thomas <i>S.T.<\/i> I, q. 35, a 1, ad 2.<\/p>\
<\/span>'
var WPFootnote63 = '<span class="WPNormal"><p><i>Lib. <\/i>58, 1-5, from <i>Adv.Eunom<\/i>. V (PG 29, 732 A) who, however, wrote: “The word of God is\
the Son, and the body of the Son, the Spirit.”<\/p>\
<\/span>'
var WPFootnote64 = '<span class="WPNormal"><p><i>De Trin.<\/i> VI, c 2, n 3 (PL 42, 925); cf. above, chap. 10.<\/p>\
<\/span>'
var WPFootnote65 = '<span class="WPNormal"><p>Effectively: Thomas gives a slightly different explanation in <i>S.T.<\/i> I, q 34, a 2, ad 5.<\/p>\
<\/span>'
var WPFootnote66 = '<span class="WPNormal"><p><i>Lib.<\/i> 58, 5-7, referring to Eph. 6: 7 with Ps.-Basil, 1.c.<\/p>\
<\/span>'
var WPFootnote67 = '<span class="WPNormal"><p><i>Lib.<\/i> 48, 31-33 & 43-46, enlarging the text of the <i>Thesaurus<\/i> ass. 33: “Once again he calls the\
Spirit Christ” (PG 75, 568 C).<\/p>\
<\/span>'
var WPFootnote68 = '<span class="WPNormal"><p>The Father is never called the Son...: cf. Peter Lombard <i>I Sent <\/i>d 9, c 1, citing Ps.-Aug. <i>De fide\
ad Petrum<\/i> c 1, n 5 (PL 40, 755).<\/p>\
<\/span>'
var WPFootnote69 = '<span class="WPNormal"><p><i>Lib.<\/i> 48, 34-38; cf. the <i>Thesaurus<\/i>, 1.c., for a more concise formulation.<\/p>\
<\/span>'
var WPFootnote70 = '<span class="WPNormal"><p><i>Lib.<\/i> 6, 65-69 (not found).<\/p>\
<\/span>'
var WPFootnote71 = '<span class="WPNormal"><p><i>De Trin<\/i>. II, c 3 (PL 42, 849-851); cf. Ambrose as cited by Peter Lombard, <i>I Sent <\/i>d 15, c 3 with\
the aforementioned authorities, and Thomas <i>Super Sent.<\/i> I, d 15, q 3, a 2.<\/p>\
<\/span>'
var WPFootnote72 = '<span class="WPNormal"><p>Cf. <i>Lib.<\/i> 62, 1-5, from <i>Adv. Eunom.<\/i> V (PG 29, 744 B).<\/p>\
<\/span>'
var WPFootnote73 = '<span class="WPNormal"><p><i>De Trin.<\/i> VIII, n 23 (PL 10, 253 A), which is cited by Peter Lombard <i>I Sent<\/i> d 34, c 1.<\/p>\
<\/span>'
var WPFootnote74 = '<span class="WPNormal"><p>The Holy Spirit: the codex of the <i>Libellus<\/i> used by the Leonine commission reads: “The created\
spirit” (Lib. 58, 12), which harmonizes well enough with the comparison Ps.-Basil makes with\
the human mind to suggest the one operation in the Trinity: “the mind itself works through its\
word” (PG 29, 732 A). The defective reading of this codex with “holy” in place of “created”\
misled Thomas.<\/p>\
<\/span>'
var WPFootnote75 = '<span class="WPNormal"><p><i>Lib.<\/i> 21, 18-22, the compiler enlarging on his own the <i>Epist. ad Serap.<\/i> 1 (PG 26, 584 C).<\/p>\
<\/span>'
var WPFootnote76 = '<span class="WPNormal"><p>Certain heretics: Thomas in the <i>Catena super Job<\/i> VII, 39, following Augustine, <i>Contra Faust<\/i>.\
XXXII, c 17 (PL 42, 507) names the Cataphrges and Manichaeans.<\/p>\
<\/span>'
var WPFootnote77 = '<span class="WPNormal"><p><i>Lib.<\/i> 3, 21-25 (not found).<\/p>\
<\/span>'
var WPFootnote78 = '<span class="WPNormal"><p><i>Lib<\/i>. 11, 45-47 (not found).<\/p>\
<\/span>'
var WPFootnote79 = '<span class="WPNormal"><p>c. 1.<\/p>\
<\/span>'
var WPFootnote80 = '<span class="WPNormal"><p><i>Lib.<\/i> 21, 33-34, an explanatory paraphrase of the compiler based on <i>Epist. ad Serap.<\/i> 1 (PG 26,\
584 C).<\/p>\
<\/span>'
var WPFootnote81 = '<span class="WPNormal"><p>c. 2.<\/p>\
<\/span>'
var WPFootnote82 = '<span class="WPNormal"><p><i>De fide orthod<\/i>. III, c 6 (PG 94, 1005); cf. Peter Lombard <i>III Sent<\/i> d 5, c 1.<\/p>\
<\/span>'
var WPFootnote83 = '<span class="WPNormal"><p>Predication via information... via identity: cf. Thomas, <i>Super Sent<\/i> III, d 7, q 1, a 1, & d 5,\
expos. textus.<\/p>\
<\/span>'
var WPFootnote84 = '<span class="WPNormal"><p><i>Lib.<\/i> 6, 11 (not found).<\/p>\
<\/span>'
var WPFootnote85 = '<span class="WPNormal"><p><i>Lib.<\/i> 3, 26-29 (not found).<\/p>\
<\/span>'
var WPFootnote86 = '<span class="WPNormal"><p><i>Lib<\/i>. 12, 90-93 (not found).<\/p>\
<\/span>'
var WPFootnote87 = '<span class="WPNormal"><p>As found in Peter Lombard, <i>III Sent<\/i> d 5, c. 1; in fact, the text is from Fulgentius, op. cit., c 17\
(PL 40, 772).<\/p>\
<\/span>'
var WPFootnote88 = '<span class="WPNormal"><p>Some: cf. Peter Lombard, <i>III Sent<\/i> d 6, c 2.<\/p>\
<\/span>'
var WPFootnote89 = '<span class="WPNormal"><p>It is impossible... cf. Thomas <i>Super Sent<\/i> III d 6, q 1, a 1, sol 1 to the objections.<\/p>\
<\/span>'
var WPFootnote90 = '<span class="WPNormal"><p>Commonly held: in fact later Thomas will say of the other view that “it is obviously heresy”;\
thus in <i>S.T<\/i>. III, q 2, a 3; cf. <i>Contra<\/i> <i>Gent.<\/i> IV, c 38.<\/p>\
<\/span>'
var WPFootnote91 = '<span class="WPNormal"><p>Interpreted: cf. Prologue & <i>S.T.<\/i> III, q 4, a 3, ad 2.<\/p>\
<\/span>'
var WPFootnote92 = '<span class="WPNormal"><p><i>Lib. <\/i>13, 25-27 (not found).<\/p>\
<\/span>'
var WPFootnote93 = '<span class="WPNormal"><p><i>Lib.<\/i> 3, 22-26 (not found).<\/p>\
<\/span>'
var WPFootnote94 = '<span class="WPNormal"><p>On the points in this and the next paragraph cf. Thomas <i>Super<\/i> <i>Sent<\/i> III, d 7, q 2, a 2, & <i>S.T<\/i>. III,\
q 16, a 7.<\/p>\
<\/span>'
var WPFootnote95 = '<span class="WPNormal"><p><i>Lib.<\/i> 17, 66-72, enlarging on <i>Epist. ad Serap.<\/i> 1 (PG 26, 576 B).<\/p>\
<\/span>'
var WPFootnote96 = '<span class="WPNormal"><p><i>Lib.<\/i> 8, 9-10 (not found).<\/p>\
<\/span>'
var WPFootnote97 = '<span class="WPNormal"><p><i>Lib.<\/i> 67, 5-6 (gloss of the compiler).<\/p>\
<\/span>'
var WPFootnote98 = '<span class="WPNormal"><p><i>Homil. 8 in Evang<\/i>. n 1 (PL 76, 1104 A), which almost in its entirety was read on Christmas\
night; cf. <i>Prototypus liturgiae dominicane,<\/i>Rome, Dominican Archives, cod. XIV, L, 1, f. 146\
rb: “through the humanity which he assumed he lived as it were a foreigner among his own,\
different, I say, not in reference to his power, but to his nature.”<\/p>\
<\/span>'
var WPFootnote99 = '<span class="WPNormal"><p><i>Lib.<\/i> 57, 6-8, from <i>Adv. Eunom<\/i>. III, n 2 (PG 29, 657 B).<\/p>\
<\/span>'
var WPFootnote100 = '<span class="WPNormal"><p>Origen, <i>Peri archon<\/i> II, c 6, n 6 (PG 11, 230 B); cf. Thomas, <i>Contra Gent.<\/i> II, c 44.<\/p>\
<\/span>'
var WPFootnote101 = '<span class="WPNormal"><p>We say: cf. Peter Lombard, <i>II Sent<\/i> d 3, c 2.<\/p>\
<\/span>'
var WPFootnote102 = '<span class="WPNormal"><p><i>Lib.<\/i> 49m 19-22 (gloss of the compiler).<\/p>\
<\/span>'
var WPFootnote103 = '<span class="WPNormal"><p>c. 4, paragraphs 2 & 4 (PG 3, 180 B & 181 B-D).<\/p>\
<\/span>'
var WPFootnote104 = '<span class="WPNormal"><p>Immediately: Denis 1.c., paragraphs 1-3 (PG 3, 205-209; <i>Dionysiaca<\/i> 836, 851 & 855).<\/p>\
<\/span>'
var WPFootnote105 = '<span class="WPNormal"><p>Book V, c 19, n 38 (PL 34, 334), in Peter Lombard <i>II Sent<\/i> d 11, c 2.<\/p>\
<\/span>'
var WPFootnote106 = '<span class="WPNormal"><p>Noted: cf. Thomas <i>Super Sent<\/i> II, d 11, q 2, a 4.<\/p>\
<\/span>'
var WPFootnote107 = '<span class="WPNormal"><p>Knew from the beginning; Augustine, 1.c., in Peter Lombard.<\/p>\
<\/span>'
var WPFootnote108 = '<span class="WPNormal"><p>Peter Lombard, 1.c., from Jerome, <i>Super Epist. ad Eph<\/i>. III (PL 26, 483 A).<\/p>\
<\/span>'
var WPFootnote109 = '<span class="WPNormal"><p>Rather Gen. 2:7.<\/p>\
<\/span>'
var WPFootnote110 = '<span class="WPNormal"><p><i>Lib.<\/i> 36, 5-12, from the <i>Thesaurus<\/i> ass. 34 (PG 75, 584 D).<\/p>\
<\/span>'
var WPFootnote111 = '<span class="WPNormal"><p><i>De Gen. ad litt.<\/i> VII, c 2 (PL 34. 356), abbreviated by Peter Lombard <i>II Sent<\/i>., d 17, c 1.<\/p>\
<\/span>'
var WPFootnote112 = '<span class="WPNormal"><p>Figurative way of speaking: thus Peter Lombard, 1. c.<\/p>\
<\/span>'
var WPFootnote113 = '<span class="WPNormal"><p><i>Lib.<\/i> 10, 17-19 (gloss of the compiler).<\/p>\
<\/span>'
var WPFootnote114 = '<span class="WPNormal"><p><i>Lib<\/i>. 84, 4, from Ps. Chrysostom, <i>Homilia de fide<\/i> (PG 60, 767).<\/p>\
<\/span>'
var WPFootnote115 = '<span class="WPNormal"><p><i>Lib.<\/i> 2, 13-14 (not found).<\/p>\
<\/span>'
var WPFootnote116 = '<span class="WPNormal"><p> Zachary, Mary, Joseph: cf. Denis, <i>De coel. Hier.<\/i> c 4, paragraph 4 (PG 3, 181 B).<\/p>\
<\/span>'
var WPFootnote117 = '<span class="WPNormal"><p><i>Lib.<\/i> 10, 96 ss (not found).<\/p>\
<\/span>'
var WPFootnote118 = '<span class="WPNormal"><p><i>Lib.<\/i> 16, 23-25 (not found).<\/p>\
<\/span>'
var WPFootnote119 = '<span class="WPNormal"><p>The four errors denounced here and to be refuted in this part match the four treated in the\
<i>Libellus.<\/i><\/p>\
<\/span>'
var WPFootnote120 = '<span class="WPNormal"><p>Some: namely the Greeks; Thomas, however, is careful not to prejudge the faith of the\
majority.<\/p>\
<\/span>'
var WPFootnote121 = '<span class="WPNormal"><p>In hell…where there is no redemption: thus the <i>Office of the dead<\/i> for the Dominicans (<i>Protot.\
lit. dominic.,<\/i> Rome, Arch. Fratr. Praed. Cod. XIV. L. 1, f.370 rb).<\/p>\
<\/span>'
var WPFootnote122 = '<span class="WPNormal"><p>Conclude, e.g., Cyril <i>Thesaurus<\/i> ass 34 (PG 75, 600 C-D; <i>Lib<\/i> 37) and Basil <i>Homil.<\/i> 24 n. 6/PG\
31, 612 C; Lib 67, 7-8).<\/p>\
<\/span>'
var WPFootnote123 = '<span class="WPNormal"><p>Argue: cf. <i>Lib<\/i>. under Basil.<\/p>\
<\/span>'
var WPFootnote124 = '<span class="WPNormal"><p>Mouth of the Father: cf. Peter Lombard, <i>Glossa super Ps<\/i>. (PL 191, 329 A).<\/p>\
<\/span>'
var WPFootnote125 = '<span class="WPNormal"><p>Lib. 61, 14-15, the compiler adding on his own to Ps.-Basil, <i>Adv. Eunom<\/i>. V (PG 29, 745); the\
idea is not, however, foreign to Basil, e.g., <i>Adv. Eunom.<\/i> II, n 34 (PG 29, 652 B).<\/p>\
<\/span>'
var WPFootnote126 = '<span class="WPNormal"><p>Thus the <i>Lib.<\/i> 86, 4; Rather Oecumenius <i>Super Epist. ad Rom<\/i>, VIII (PG 118, 476 B).<\/p>\
<\/span>'
var WPFootnote127 = '<span class="WPNormal"><p>Natural: in authentic works of the Greek Fathers this is not recorded of the relation of the Spirit\
to the Son; but cf. below Cyril in the penultimate paragraph of this chapter.<\/p>\
<\/span>'
var WPFootnote128 = '<span class="WPNormal"><p><i>Lib.<\/i> 6, 19-22 (not found).<\/p>\
<\/span>'
var WPFootnote129 = '<span class="WPNormal"><p><i>Lib.<\/i> 17, 40-41 (gloss of the compiler).<\/p>\
<\/span>'
var WPFootnote130 = '<span class="WPNormal"><p><i>Lib.<\/i> 42, 17-20, adding “truly” and “naturally” to Cyril himself in <i>Super Iob<\/i>. XVII (PG 74, 541\
A).<\/p>\
<\/span>'
var WPFootnote131 = '<span class="WPNormal"><p><i>Lib.<\/i> 22, 26-29, from Athan. <i>De Incarnatione<\/i> n. 9 (PG 26, C).<\/p>\
<\/span>'
var WPFootnote132 = '<span class="WPNormal"><p><i>Lib.<\/i> 42, 2-5 from Cyril <i>Super Iob<\/i> XVII (PG 75, 540 C).<\/p>\
<\/span>'
var WPFootnote133 = '<span class="WPNormal"><p><i>Lib<\/i>. 43, 23-25 (gloss of the compiler).<\/p>\
<\/span>'
var WPFootnote134 = '<span class="WPNormal"><p><i>Lib<\/i>. 42, 8-9. Misled, however, by the text of the <i>Libellus<\/i> Thomas seems to have understood\
“fruit of the essence of the Son”, when the Greek text reads: “because the Son is of the Father\
and in the Father by nature, since he is the true fruit of his essence, he claims for himself the very\
Spirit of the Father by nature.” (PG 74, 540 C).<\/p>\
<\/span>'
var WPFootnote135 = '<span class="WPNormal"><p><i>Lib.<\/i> 5, 1-5 (not found).<\/p>\
<\/span>'
var WPFootnote136 = '<span class="WPNormal"><p><i>Lib.<\/i> 16, 100-103 (not found).<\/p>\
<\/span>'
var WPFootnote137 = '<span class="WPNormal"><p><i>Lib<\/i>. 20, 42-50 (not found).<\/p>\
<\/span>'
var WPFootnote138 = '<span class="WPNormal"><p>Thus <i>Lib.<\/i> 89, 2-5; cf. Cyril of Alex. <i>Super Iob<\/i> XIV (PG 74, 257 D).<\/p>\
<\/span>'
var WPFootnote139 = '<span class="WPNormal"><p><i>Lib.<\/i> 4, 23-26 (not found).<\/p>\
<\/span>'
var WPFootnote140 = '<span class="WPNormal"><p><i>Lib<\/i>. 21, 92-95 (gloss of the compiler).<\/p>\
<\/span>'
var WPFootnote141 = '<span class="WPNormal"><p><i>Lib.<\/i> 22, 16, from Athan. <i>De Incarnatione<\/i> n. 9 (PG 26, 997 B).<\/p>\
<\/span>'
var WPFootnote142 = '<span class="WPNormal"><p>Thus <i>Lib<\/i>. 88, 38 (not found).<\/p>\
<\/span>'
var WPFootnote143 = '<span class="WPNormal"><p>Shown: cf. above, II, 1, last paragraph.<\/p>\
<\/span>'
var WPFootnote144 = '<span class="WPNormal"><p><i>Lib.<\/i> 10, 133-138 (not found).<\/p>\
<\/span>'
var WPFootnote145 = '<span class="WPNormal"><p><i>Lib<\/i>. 7, 33 (not found).<\/p>\
<\/span>'
var WPFootnote146 = '<span class="WPNormal"><p><i>Lib<\/i>. 15, 107-108 (not found).<\/p>\
<\/span>'
var WPFootnote147 = '<span class="WPNormal"><p><i>Lib.<\/i> 20, 18-21 (gloss of the compiler).<\/p>\
<\/span>'
var WPFootnote148 = '<span class="WPNormal"><p><i>Lib<\/i>. 62, 9-16; cf. <i>Adv. Eunom.<\/i> V, n 3 (PG 29, 744 C).<\/p>\
<\/span>'
var WPFootnote149 = '<span class="WPNormal"><p><i>Lib.<\/i> 11, 29-33 (not found).<\/p>\
<\/span>'
var WPFootnote150 = '<span class="WPNormal"><p><i>Lib. <\/i>31, 9-12, from Cyril <i>Explicatio xii capit. Anath.<\/i> 9 (PG 76, 308 D).<\/p>\
<\/span>'
var WPFootnote151 = '<span class="WPNormal"><p><i>Lib.<\/i> 18, 14-18 (gloss of the compiler).<\/p>\
<\/span>'
var WPFootnote152 = '<span class="WPNormal"><p>Above: cf. 1, 10, 4<sup>th<\/sup> paragraph.<\/p>\
<\/span>'
var WPFootnote153 = '<span class="WPNormal"><p><i>Lib.<\/i> 17, 72-73 (gloss of the compiler).<\/p>\
<\/span>'
var WPFootnote154 = '<span class="WPNormal"><p><i>Lib.<\/i> 55, 6, from Gregory of Caesarea <i>Expositio fidei<\/i> (PG 10, 985 A).<\/p>\
<\/span>'
var WPFootnote155 = '<span class="WPNormal"><p>Natural image. Thomas did indeed read this in the passages of Cyril and Ps.- Basil about to be\
quoted by him according to the <i>Libellus,<\/i> but in the Greek, even though the Spirit is said to be\
“image of the Son”, only of the Son is it recorded that he is the “natural image of God”. Either\
the compiler or translator on his own added “natural”.<\/p>\
<\/span>'
var WPFootnote156 = '<span class="WPNormal"><p><i>Lib.<\/i> 21, 21-24 (gloss of the compiler).<\/p>\
<\/span>'
var WPFootnote157 = '<span class="WPNormal"><p><i>Lib.<\/i> 50, 18-23, from the <i>Thesaurus<\/i> ass. 33 (PG 75, 572 A), with the word “natural”, however,\
added.<\/p>\
<\/span>'
var WPFootnote158 = '<span class="WPNormal"><p><i>Lib.<\/i> 63, 9-10, from <i>Adv. Eunom.<\/i> V, n 3 (PG 29, 753 B), likewise with the addition of “natural”.<\/p>\
<\/span>'
var WPFootnote159 = '<span class="WPNormal"><p><i>Lib.<\/i> 19, 89-91, adding on its own to Athanasius.<\/p>\
<\/span>'
var WPFootnote160 = '<span class="WPNormal"><p><i>Lib.<\/i> 67, 17-20, adding on its own to Basil.<\/p>\
<\/span>'
var WPFootnote161 = '<span class="WPNormal"><p><i>Lib.<\/i> 21, 7-12, & 37-41, enlarging on <i>Epist. ad Serap.<\/i> n 23 (PG 26, 585 A).<\/p>\
<\/span>'
var WPFootnote162 = '<span class="WPNormal"><p><i>Lib<\/i>. 85, 3-5; cf. Theophylact <i>Super Epist. ad Rom.<\/i> VIII (PG 124, 439 A).<\/p>\
<\/span>'
var WPFootnote163 = '<span class="WPNormal"><p>Shown: above II, chapter 2.<\/p>\
<\/span>'
var WPFootnote164 = '<span class="WPNormal"><p><i>Lib.<\/i> 51, 55-60, greatly enlarging on <i>Thesaurus<\/i> ass. 33 (PG 75, 573 C).<\/p>\
<\/span>'
var WPFootnote165 = '<span class="WPNormal"><p><i>Lib.<\/i> 58, 15-16, from <i>Adv. Eunom<\/i>. V (PG 29, 732 B).<\/p>\
<\/span>'
var WPFootnote166 = '<span class="WPNormal"><p><i>Lib.<\/i> 60, 5-9, & <i>Lib.<\/i> 61, 6-8 (not found).<\/p>\
<\/span>'
var WPFootnote167 = '<span class="WPNormal"><p>Above: II, 4, second paragraph.<\/p>\
<\/span>'
var WPFootnote168 = '<span class="WPNormal"><p><i>Lib.<\/i> 29, 11, very clumsily translating <i>Quod non sunt tres dii<\/i> (PG 45, 133 C).<\/p>\
<\/span>'
var WPFootnote169 = '<span class="WPNormal"><p><i>Lib.<\/i> 20, 30-35, enlarging on <i>Epist. ad Serap.<\/i> n 20 (PG 26, 580 B).<\/p>\
<\/span>'
var WPFootnote170 = '<span class="WPNormal"><p><i>Lib.<\/i> 67, 14-16; cf. Basil <i>Homil.<\/i> 24, n 6 (PG 31, 612 C). Instead of Christ in this passage Basil\
has “household of Christ”.<\/p>\
<\/span>'
var WPFootnote171 = '<span class="WPNormal"><p><i>Lib.<\/i> 74, 3-4, from the <i>Ancoratus<\/i> n 9 (PG 43, 32 C).<\/p>\
<\/span>'
var WPFootnote172 = '<span class="WPNormal"><p><i>Lib.<\/i> 76, 5-7; cf. Epiphanius <i>Adv. Haereses haer<\/i> 74 (PG 42, 480 D). The last sentence in this\
quotation: Take note…then, is omitted by Epiphanius.<\/p>\
<\/span>'
var WPFootnote173 = '<span class="WPNormal"><p><i>Lib.<\/i> 80, 2-4, from the <i>Ancoratus<\/i> n 75 (PG 43m 157 A).<\/p>\
<\/span>'
var WPFootnote174 = '<span class="WPNormal"><p><i>Lib.<\/i> 9, 73-77 (not found). From the hypostases: the <i>Libellus <\/i>has “from the hypostasis”, i.e.,\
from the substance; however, Thomas understood this to mean “person”, and perhaps he\
corrected the text to the reading in the plural, as also below.<\/p>\
<\/span>'
var WPFootnote175 = '<span class="WPNormal"><p><i>Lib.<\/i> 72, 13-18, from the <i>Ancoratus<\/i> n 81 (ed. K. Holl, Leipzig 1915 [GCS 25] 102).\
Epiphanius, however, wrote thus “substance from the substance of the very Father and of the Son\
and of the Holy Spirit” (a phrase missing in the PG edition 43, 169 C); the final phrase from the\
hypostases of Father and Son, was omitted in the <i>Libellus<\/i> and supplied by Thomas.<\/p>\
<\/span>'
var WPFootnote176 = '<span class="WPNormal"><p><i>Lib.<\/i> 9, 41-45 (not found).<\/p>\
<\/span>'
var WPFootnote177 = '<span class="WPNormal"><p><i>Lib<\/i>. 10, 155-157 (not found).<\/p>\
<\/span>'
var WPFootnote178 = '<span class="WPNormal"><p><i>Lib.<\/i> 11m 33-35 (not found). According to the Leonine editor Thomas probably preserves in\
this passage a more faithful version of the original <i>Libellus<\/i> than that of the Vatican codex,\
generally favored in the Leonine edition.<\/p>\
<\/span>'
var WPFootnote179 = '<span class="WPNormal"><p><i>Lib.<\/i> 20, 7-9 (the glossator).<\/p>\
<\/span>'
var WPFootnote180 = '<span class="WPNormal"><p><i>Lib.<\/i> 37, 10-14, from the Thesaurus ass. 34 (PG 75, 600 D).<\/p>\
<\/span>'
var WPFootnote181 = '<span class="WPNormal"><p><i>Lib.<\/i> 2-3, from a fragment included among the works of Cyril (PG 33, 965 B).<\/p>\
<\/span>'
var WPFootnote182 = '<span class="WPNormal"><p><i>Lib.<\/i> 56, 8-9, from <i>Adv. Eunom<\/i>. III, n 1 (PG 29, 656 A). This citation is indeed found in some\
codices of Basil, among which that so called “oldest” which the Latins displayed at the Council\
of Florence in sessions 18 to 22 (<i>Concilium Florentinum,<\/i> Rome 1953, vol. V, pp. 295 ss); it is\
lacking, however, in many codices: cf. PG 29, 1.c., note 79.<\/p>\
<\/span>'
var WPFootnote183 = '<span class="WPNormal"><p><i>Lib.<\/i> 19, 43-46 (glossator).<\/p>\
<\/span>'
var WPFootnote184 = '<span class="WPNormal"><p><i>Lib.<\/i> 43, 11-12, from Cyril <i>De recta fide ad Theodosium<\/i> n 37 (PG 76, 1188 D), who, however,\
has “infuses” where the <i>Libellus<\/i> writes “produces and spirates”.<\/p>\
<\/span>'
var WPFootnote185 = '<span class="WPNormal"><p><i>Lib.<\/i> 11, 19-20 (not found).<\/p>\
<\/span>'
var WPFootnote186 = '<span class="WPNormal"><p><i>Lib.<\/i> 20, 84-86 (glossator).<\/p>\
<\/span>'
var WPFootnote187 = '<span class="WPNormal"><p><i>Lib<\/i>. 64, 5-6 (not found).<\/p>\
<\/span>'
var WPFootnote188 = '<span class="WPNormal"><p><i>Lib.<\/i> 15, 138-143 (not found).<\/p>\
<\/span>'
var WPFootnote189 = '<span class="WPNormal"><p><i>Lib.<\/i> 3, 9 & 14 (not found).<\/p>\
<\/span>'
var WPFootnote190 = '<span class="WPNormal"><p><i>Lib.<\/i> 52, 12-15 (a paraphrase based on the <i>Thesaurus<\/i> (PG 75, 576 B).<\/p>\
<\/span>'
var WPFootnote191 = '<span class="WPNormal"><p><i>Lib<\/i>. 2, 24 (not found).<\/p>\
<\/span>'
var WPFootnote192 = '<span class="WPNormal"><p><i>Lib.<\/i> 6, 57 (not found).<\/p>\
<\/span>'
var WPFootnote193 = '<span class="WPNormal"><p><i>Lib.<\/i> 11, 56-58 (not found).<\/p>\
<\/span>'
var WPFootnote194 = '<span class="WPNormal"><p><i>Lib<\/i>. 12, 30-35 (not found).<\/p>\
<\/span>'
var WPFootnote195 = '<span class="WPNormal"><p><i>Lib<\/i>. 20, 12-14 (gloss of the compiler).<\/p>\
<\/span>'
var WPFootnote196 = '<span class="WPNormal"><p><i>Lib.<\/i> 87, 2, from Oecumenicus <i>Super Epist. ad Ephes<\/i>. IV (PG 118, 1121 D).<\/p>\
<\/span>'
var WPFootnote197 = '<span class="WPNormal"><p><i>Lib<\/i>. 3, 5-7 (not found).<\/p>\
<\/span>'
var WPFootnote198 = '<span class="WPNormal"><p><i>Lib<\/i>. 9, 54-60 (not found).<\/p>\
<\/span>'
var WPFootnote199 = '<span class="WPNormal"><p><i>Lib.<\/i> 10, 83-88 (not found).<\/p>\
<\/span>'
var WPFootnote200 = '<span class="WPNormal"><p><i>Lib.<\/i> 36, 26-28, from Cyril <i>Thesaurus<\/i> ass. 34 (PG 75, 585 A).<\/p>\
<\/span>'
var WPFootnote201 = '<span class="WPNormal"><p><i>Lib.<\/i> 6, 71-72 (not found).<\/p>\
<\/span>'
var WPFootnote202 = '<span class="WPNormal"><p><i>Lib.<\/i> 18, 16-18 (a paraphrase based on PG 26, 576 D).<\/p>\
<\/span>'
var WPFootnote203 = '<span class="WPNormal"><p><i>Lib.<\/i> 18, 18-22 (a paraphrase based on PG 26, 576 D).<\/p>\
<\/span>'
var WPFootnote204 = '<span class="WPNormal"><p>Lib. 23, 18-21, enlarging on Gregory Nazianzen <i>Oratio<\/i> 42, n. 15 (PG 36, 476 B).<\/p>\
<\/span>'
var WPFootnote205 = '<span class="WPNormal"><p><i>Lib<\/i>. 6, 76-79 (not found).<\/p>\
<\/span>'
var WPFootnote206 = '<span class="WPNormal"><p><i>Lib.<\/i> 17, 15-18; <i>Lib.<\/i> 18, 12-13; <i>Lib. <\/i>19, 55-57, interjecting his own opinions in the <i>Epist. ad\
Serap.<\/i> nn 19-20 (PG 26, 573 C-580 C).<\/p>\
<\/span>'
var WPFootnote207 = '<span class="WPNormal"><p><i>Lib.<\/i> 22, 44-46, from Athanasius <i>De Incarnatione<\/i> n. 9 (PG 26, 1000A).<\/p>\
<\/span>'
var WPFootnote208 = '<span class="WPNormal"><p>Certain adversaries: the Greek theologians opposing the Latins from the time of Photius.<\/p>\
<\/span>'
var WPFootnote209 = '<span class="WPNormal"><p>More generic: cf. Thomas <i>De Pot.<\/i> q 10, a 1 resp.<\/p>\
<\/span>'
var WPFootnote210 = '<span class="WPNormal"><p>Particularly suitable: cf. Thomas <i>Contra Gent.<\/i> IV c. 24.<\/p>\
<\/span>'
var WPFootnote211 = '<span class="WPNormal"><p>Previously: cf. 1, 1, 6<sup>th<\/sup> paragraph.<\/p>\
<\/span>'
var WPFootnote212 = '<span class="WPNormal"><p>Concluded that…Son: cf. Thomas <i>De Pot.<\/i> q 10. a 4 ad 33, and <i>Contra Gent<\/i>. IV, c 24.<\/p>\
<\/span>'
var WPFootnote213 = '<span class="WPNormal"><p><i>Lib.<\/i> 40, 6-8, from Cyril <i>Epist.<\/i> 5 (PG 77, 316 D).<\/p>\
<\/span>'
var WPFootnote214 = '<span class="WPNormal"><p>Above II, chapter 21.<\/p>\
<\/span>'
var WPFootnote215 = '<span class="WPNormal"><p><i>Lib.<\/i> 41, 5-6, from Cyril <i>Epist.<\/i> 17 (PG 77, 117 C).<\/p>\
<\/span>'
var WPFootnote216 = '<span class="WPNormal"><p><i>Lib<\/i>. 26, 15-16; cf. Gregory Naz. <i>Oratio<\/i> 31, n 8 (PG 36, 141 B).<\/p>\
<\/span>'
var WPFootnote217 = '<span class="WPNormal"><p><i>Lib.<\/i> 34, 3-5, from Cyril <i>Super Ioel <\/i>II c. 25 (PG 71, 377 D).<\/p>\
<\/span>'
var WPFootnote218 = '<span class="WPNormal"><p><i>Lib.<\/i> 91, 27-32l; cf. Maximus <i>Qu. 63 ad Thalassium<\/i> (PG 90, 672 C), who only has “belongs\
to the Son”, where the <i>Libellus<\/i> says “exists…by the Son”.<\/p>\
<\/span>'
var WPFootnote219 = '<span class="WPNormal"><p><i>Lib.<\/i> 15, 96-103 (not found).<\/p>\
<\/span>'
var WPFootnote220 = '<span class="WPNormal"><p><i>Lib. <\/i>20, 67-70 (gloss of the compiler).<\/p>\
<\/span>'
var WPFootnote221 = '<span class="WPNormal"><p><i>Lib.<\/i> 58, 1-3, from <i>Adv. Eunom.<\/i> (PG 29, 732 A).<\/p>\
<\/span>'
var WPFootnote222 = '<span class="WPNormal"><p><i>Lib.<\/i> 79, 7-10, from the <i>Ancoratus<\/i> n. 73 (PG 43, 153 A), based on codices examined by D.\
Petavius. To these as it were later readings K. Holl (GCS 25, 91) prefers the reading “the Holy\
Spirit except the Son from whom he receives and the Father from whom he proceeds: (PG 42,\
493 B); cf. K. Holl, <i>Die handschriftliche Ueberlieferung des Epiphanius<\/i> (T.u.U. XXXVI-2)\
Leipzig 1910, pp. 75 ss.<\/p>\
<\/span>'
var WPFootnote223 = '<span class="WPNormal"><p>Ps.-Athanasius <i>Symbolum ‘Quicumque’<\/i>.<\/p>\
<\/span>'
var WPFootnote224 = '<span class="WPNormal"><p>Chap. 15 (PL 158, 308 B-D).<\/p>\
<\/span>'
var WPFootnote225 = '<span class="WPNormal"><p>Thus <i>Lib.<\/i> 89, 6-7; cf. Cyril of Alex. <i>Super Iob<\/i> XIV (PG 74, 257 C).<\/p>\
<\/span>'
var WPFootnote226 = '<span class="WPNormal"><p><i>Lib.<\/i> 48, 27-31, from the <i>Thesaurus<\/i> ass. 33 (PG 75, 568 C).<\/p>\
<\/span>'
var WPFootnote227 = '<span class="WPNormal"><p>Understood…from the Son: cf. Thomas <i>De Pot.<\/i> q 10, a 4, ad 12.<\/p>\
<\/span>'
var WPFootnote228 = '<span class="WPNormal"><p>Creed published: in the Council of Constantinople, according to Thomas <i>De Pot.<\/i> q 10, a 4, ad\
13, and <i>Contra Gent.<\/i> IV, c 25.<\/p>\
<\/span>'
var WPFootnote229 = '<span class="WPNormal"><p>Above: 1, 1, 7<sup>th<\/sup> paragraph.<\/p>\
<\/span>'
var WPFootnote230 = '<span class="WPNormal"><p><i>Lib.<\/i> 29, 1-5, and 7, 7, from Gregory of Nyssa <i>Quod non sint tres dii<\/i> (PG 45, 133 B-C). From\
the Relative and from the First: thus in the <i>Libellus;<\/i> Gregory, however, has “through the Relative\
from the First” (PG, 1.c.).<\/p>\
<\/span>'
var WPFootnote231 = '<span class="WPNormal"><p><i>De Trin<\/i>. V, c. 5 ss. (PL 196 ss.).<\/p>\
<\/span>'
var WPFootnote232 = '<span class="WPNormal"><p><i>Contra Maxim. <\/i>II, c 14, n 8 (PL 42, 775); cf. above 1, 2, 2<sup>nd<\/sup> paragraph.<\/p>\
<\/span>'
var WPFootnote233 = '<span class="WPNormal"><p>Lib. 10, 38-48 (not found). The analogy of the chain Basil proposes in <i>Epist.<\/i> 38 (PG 32, 322\
C).<\/p>\
<\/span>'
var WPFootnote234 = '<span class="WPNormal"><p><i>Lib<\/i>. 15, 90-96, and 144-147 (not found).<\/p>\
<\/span>'
var WPFootnote235 = '<span class="WPNormal"><p><i>Lib.<\/i> 38, 5-8, from the <i>Thesaurus<\/i> ass. 34 (PG 75, 608 B).<\/p>\
<\/span>'
var WPFootnote236 = '<span class="WPNormal"><p>Chap. 10, 12, and 14 (PL 196, 956-960).<\/p>\
<\/span>'
var WPFootnote237 = '<span class="WPNormal"><p><i>Thesaurus<\/i> ass. 33 (PG 75, 576 C-D), enlarged in the <i>Libellus<\/i> 53 throughout the paragraph.<\/p>\
<\/span>'
var WPFootnote238 = '<span class="WPNormal"><p><i>Lib.<\/i> 53, 19-27.<\/p>\
<\/span>'
var WPFootnote239 = '<span class="WPNormal"><p><i>Lib.<\/i> 11, 63-70, and 72-74 (not found).<\/p>\
<\/span>'
var WPFootnote240 = '<span class="WPNormal"><p><i>Lib.<\/i> 38, 3-5, adding “our salvation” to the <i>Thesaurus<\/i> ass. 34 (PG 75, 608 B).<\/p>\
<\/span>'
var WPFootnote241 = '<span class="WPNormal"><p><i>Lib.<\/i> 75, 5-7, quoting the <i>Ancoratus<\/i> n. 14 (PG 43, 44 A), where however there is nothing about\
the procession of the Holy Spirit as such.<\/p>\
<\/span>'
var WPFootnote242 = '<span class="WPNormal"><p>Already: cf. II, chap. 6 & 7.<\/p>\
<\/span>'
var WPFootnote243 = '<span class="WPNormal"><p><i>Lib.<\/i> 94, 23-26; cf. <i>Conc. Constant.<\/i> 1, can. 3 (Mansi 3, 560 C) and Justinian, <i>Novellae<\/i> CXXXI\
c. 2.<\/p>\
<\/span>'
var WPFootnote244 = '<span class="WPNormal"><p><i>Lib<\/i>. 100, 2-6; cf. John Chrysostom <i>Super Iob hom.<\/i> 58, n 2 (PG 58, 568).<\/p>\
<\/span>'
var WPFootnote245 = '<span class="WPNormal"><p><i>Lib<\/i>. 96, 24-26; cf. <i>Conc. Chalced.<\/i> act. 3 (Mansi 6, 1005 B, etc.).<\/p>\
<\/span>'
var WPFootnote246 = '<span class="WPNormal"><p>Power: thus the <i>Libellus<\/i>, where Chrysostom has “revelation”.<\/p>\
<\/span>'
var WPFootnote247 = '<span class="WPNormal"><p><i>Lib<\/i>. 99, 52-56, from John Chrysostom <i>Super Matt. hom<\/i>. 54, n 2 (PG 58, 534-535).<\/p>\
<\/span>'
var WPFootnote248 = '<span class="WPNormal"><p><i>Lib.<\/i> 101, 6-8; cf. John Chrysostom <i>Super Joh. hom.<\/i> 88, n 1 (PG 59, 480).<\/p>\
<\/span>'
var WPFootnote249 = '<span class="WPNormal"><p><i>Lib.<\/i> 102, 12-13 (gloss of the compiler).<\/p>\
<\/span>'
var WPFootnote250 = '<span class="WPNormal"><p><i>Lib<\/i>. 98, 17-23, 55-56, and 60-66 (not found).<\/p>\
<\/span>'
var WPFootnote251 = '<span class="WPNormal"><p>Bulgarian delegation: how spurious this work included among those of Chrysostom is had\
already been shown by J. Launoy, <i>Epist. 1 ad Ant. Faurum<\/i> (Geneva 1731, p. 4); Thomas,\
however, accepted the defective reading of the <i>Libellus,<\/i> whose origin cannot be traced. Cf.\
Preface, Leonine edition, parag. 60, note 1.<\/p>\
<\/span>'
var WPFootnote252 = '<span class="WPNormal"><p><i>Lib<\/i>. 103, 1, and 17-22 (not found).<\/p>\
<\/span>'
var WPFootnote253 = '<span class="WPNormal"><p><i>Lib.<\/i> 95, 6-13, and 17-19 (not found).<\/p>\
<\/span>'
var WPFootnote254 = '<span class="WPNormal"><p><i>Lib.<\/i> 97, 30-33 (gloss of the compiler).<\/p>\
<\/span>'
var WPFootnote255 = '<span class="WPNormal"><p><i>Lib.<\/i> 98, 25-30, and 56-57 (not found).<\/p>\
<\/span>'
var WPFootnote256 = '<span class="WPNormal"><p><i>Lib.<\/i> 103, 22-23; cf. John Chrysostom <i>Super Joh. hom.<\/i> 58, n 1 (PG 59, 479).<\/p>\
<\/span>'
var WPFootnote257 = '<span class="WPNormal"><p><i>Lib<\/i>. 98, 49-51 (not found).<\/p>\
<\/span>'
var WPFootnote258 = '<span class="WPNormal"><p><i>Lib<\/i>. 104, 1-7, from Maximus, <i>Epistola Romae scripta<\/i> (PG 91, 137 D).<\/p>\
<\/span>'
var WPFootnote259 = '<span class="WPNormal"><p><i>Lib<\/i>. 98, 53-55 (not found).<\/p>\
<\/span>'
var WPFootnote260 = '<span class="WPNormal"><p><i>Lib. 102, 9; from <\/i>John Chrysostom<i> Super Act. apost. hom.<\/i> 6, n 1 (PG 60, 55).<\/p>\
<\/span>'
var WPFootnote261 = '<span class="WPNormal"><p><i>Lib.<\/i> 98, 44-48 (not found).<\/p>\
<\/span>'
var WPFootnote262 = '<span class="WPNormal"><p><i>Lib.<\/i> 104, 16-21, interjecting his own views in Maximus <i>Epist.<\/i> <i>Romae scripta<\/i> (PG 91, 140 A).<\/p>\
<\/span>'
var WPFootnote263 = '<span class="WPNormal"><p><i>Lib.<\/i> 106, 1-13, from Theophylact <i>Super Matth<\/i>. XXVI: 17 (PG 123, 440 note a, and 441 A).<\/p>\
<\/span>'
var WPFootnote264 = '<span class="WPNormal"><p>It should be remarked…to the end of the 5<sup>th<\/sup> paragraph: this entire section, with the sole\
omission of the text of Chrysostom in the third paragraph, is read in <i>Contra Gent.<\/i> IV, c 69 (cf.\
Preface, Leonine ed., parag. 44); but Thomas reviewing the question in <i>S.T.<\/i> III, q 46, a 9, quotes\
Chrysostom according to the translation made by Burgundy.<\/p>\
<\/span>'
var WPFootnote265 = '<span class="WPNormal"><p>Some: the Greeks whose arguments Thomas reports in <i>Super Sent.<\/i> IV, d 11, q 2, a 2, qc 3.<\/p>\
<\/span>'
var WPFootnote266 = '<span class="WPNormal"><p><i>Lib.<\/i> 108, 3-8, from Chrysostom <i>Super Matth. hom<\/i>. 84, n 2 (PG 58, 754).<\/p>\
<\/span>'
var WPFootnote267 = '<span class="WPNormal"><p><i>Lib.<\/i> 105, 9-12; cf. Gregory Naz. <i>Oratio<\/i> I n. 3 (PG 35, 397 A).<\/p>\
<\/span>'
var WPFootnote268 = '<span class="WPNormal"><p><i>Lib<\/i>. 110, 9-17 (not found among the works of Gregory); cf. Preface, Leonine ed., parag. 58 b).<\/p>\
<\/span>'
var WPFootnote269 = '<span class="WPNormal"><p><i>Lib.<\/i> III, 31-38, perhaps an imitation of Gregory of Nyssa <i>De mortuis<\/i> (PG 46, 521 D-524 B).<\/p>\
<\/span>'
var WPFootnote270 = '<span class="WPNormal"><p><i>Lib.<\/i> 112, 33-46; cf. Oecumenicus <i>Super I Cor.<\/i> III (PG 118, 676 D), where, however, the last\
section “In this fire…hosts” is omitted).<\/p>\
<\/span>'
var WPFootnote271 = '<span class="WPNormal"><p>Cf. <i>Lib.<\/i> 12, 15; 15, 76; 48, 38, etc.<\/p>\
<\/span>'
var WPFootnote272 = '<span class="WPNormal"><p>Cf. <i>Lib.<\/i> 15, 82 and 107; 45, 34; 48, 35, etc.<\/p>\
<\/span>'
var WPFootnote273 = '<span class="WPNormal"><p>Cf. <i>Lib.<\/i> 14, 64; 15, 49.<\/p>\
<\/span>'
var WPFootnote274 = '<span class="WPNormal"><p><i>De Trin<\/i>. VII, n 7 (PL 42, 939) as quoted by Peter Lombard <i>1 Sent,<\/i> d 23, c. 2.<\/p>\
<\/span>'
var WPFootnote275 = '<span class="WPNormal"><p>Cf. <i>Lib.<\/i> 16, 9 and 48; 22:1.<\/p>\
<\/span>'
var WPFootnote276 = '<span class="WPNormal"><p>This is not found in the Vatican codex of the <i>Libellus.<\/i> Perhaps Thomas refers to a section “at\
the beginning of the <i>Libellus”<\/i> then in existence, now lost. Cf. Preface, Leonine ed., parag. 6.<\/p>\
<\/span>'
var WPFootnote277 = '<span class="WPNormal"><p>Cf. <i>Lib<\/i>. 6, 62.<\/p>\
<\/span>'
var WPFootnote278 = '<span class="WPNormal"><p>Above: Prol., 2<sup>nd<\/sup> parag.<\/p>\
<\/span>'
var WPFootnote279 = '<span class="WPNormal"><p>Cf. 1, 1.<\/p>\
<\/span>'
var WPFootnote280 = '<span class="WPNormal"><p>Cf. 1, 2.<\/p>\
<\/span>'
var WPFootnote281 = '<span class="WPNormal"><p>These explanations apparently belong to that part of the <i>Libellus<\/i> now lost; cf. Preface, Leonine\
ed., 6<sup>th<\/sup> parag.<\/p>\
<\/span>'
var WPFootnote282 = '<span class="WPNormal"><p>Qu 74 (PL 40, 86).<\/p>\
<\/span>'
function WPShow(WPid, WPtext)
{
if(bInlineFloats)
eval("document.all." + WPid + ".style.visibility = 'visible'");
else
{
if(floatwnd == 0 || floatwnd.closed)
floatwnd = window.open("", "comment", "toolbars=0,width=600,height=200,resizable=1,scrollbars=1,dependent=1");
floatwnd.document.open("text/html", "replace");
floatwnd.document.write("<html><head>\r\n");
floatwnd.document.write("<style> p { margin-top:0px; margin-bottom:1px; } <\/style>\r\n");
floatwnd.document.write("<\/head><body>\r\n");
floatwnd.document.write(WPtext);
floatwnd.document.write('<br><a href="javascript: self.close()">Close<\/a>');
floatwnd.document.write("<\/body><\/html>");
floatwnd.document.close();
floatwnd.focus();
}
}
function WPHide(WPid)
{
if(bInlineFloats)
eval("document.all." + WPid + ".style.visibility = 'hidden'");
}
</script>
<style>
span.WPFloatStyle
{
visibility: hidden;
position: absolute;
left: 10px;
right: 10px;
background-color: rgb(255, 255, 225);
border-width: 1px;
border-style: solid;
border-color: black;
margin-top: 25px;
padding: 6px;
line-height: normal
}
</style>
<body style="text-align:justify;font-family:Arial">
<blockquote>
<center>
<h2>CONTRA ERRORES GRAECORUM</h2>
<h3>by<br>
ST. THOMAS AQUINAS, O.P.<br>
<br>
translated by<br>
Peter Damian Fehlner, F.I.<br>
re-edited and missing chapters supplied by Joseph Kenny, O.P.</h3>
<hr>
<h3>CONTENTS</h3>
</center>
<p align="center"><b>PART ONE</b>
<ol>
<p><a href="ContraErrGraecorum.htm#0">PROLOGUE</a>
<li>