-
Notifications
You must be signed in to change notification settings - Fork 3
/
ISSN_to_SSG_zotkat.map
2320 lines (2319 loc) · 144 KB
/
ISSN_to_SSG_zotkat.map
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
2693-2229=0 # Occasional Papers on Religion in Eastern Europe (2737)
2197-912X=1 # Zeitschrift für evangelische Ethik (1265)
1939-7909=1 # Journal of Spiritual Formation and Soul Care (2081)
1845775740=1 # Amtsblatt Mainz (Amtsblatt-ePPN, IKR)
2749-2826=1 # NomoK@non (Zs.-ePPN, IKR)
853206333=1 # Mainzer Beiträge zu Kirchen- und Religionsrecht (Adv, IKR)
2629-804X=1 # Kirchen- und Staatskirchenrecht (Odv, IKR)
1794-3108=NBAZ # Revista Criminalidad|krimdok
0973-5089=2,1 # International journal of criminal justice sciences|krimdok
0300-3558=NABZ # Prison service journal|krimdok
1550-3550=NABZ # Applied Psychology in Criminal Justice|krimdok
2468-9963=2,1 # Delito y Sociedad|krimdok
1754-0445=NABZ # Law, Crime and History|krimdok
2567-9392=1 # Jahrbuch für Biblische Theologie (522)
1868-7377=1 # Zeitschrift für Theologie und Kirche (1259)
2506-7583=NABZ # Criminological Encounters|krimdok
0210-9700=2,1 # Eguzkilore : cuaderno del Instituto Vasco de Criminología|krimdok
0386-720X=0 # Bulletin of the Nanzan Institute for Religion and Culture (1471)
0024-7324=1 # Lumen Vitae (662)
0121-4977=1 # Medellín (702)
1057-2414=NABZ # The International Journal of Nautical Archaeology (1662)
2036-5047=1 # Sophia (3483 itbk, RETRO!)
2595-1165=1 # Scientia canonica (Zs-ePPN, IKR)
2791-4658=1 # Ex Fonte (1745)
2616-1591=0$a1 # Ghana journal of religion and theology (3530)
3041-3648=1 # Orientalia (2136)
1122-0392=1 # Quaderni di diritto e politica ecclesiastica (Zs-ePPN, IKR)
1540-7942=1 # Journal of the Society of Christian Ethics (582)
2769-3600=1 # Bulletin of ASOR 2021- (3743)
2817-1799=0$a1 # ARC (1493)
2633-8076=2,1 # Journal of Criminology|krimdok
KRIM-0001=NABZ # Addiction and Criminology|krimdok
1916-2782=NABZ # International Journal of Criminology and Sociological Theory|krimdok
2413-3108=NABZ # South African crime quarterly|krimdok
2699-8440=NABZ # Sexual Offending|krimdok
2363-9849=NABZ # Journal for Deradicalization|krimdok
1123-5470=1 # Vivens homo (1224)
2413-3108=NABZ # South African crime quarterly|krimdok
0028-4289=1 # New blackfriars (764)
2194-3842=1 # Deutsches Archiv für Erforschung des Mittelalters (1554)
1573-0751=NABZ # Crime, Law and Social Change : An Interdisciplinary Journal|krimdok
2660-9517=1 # Dialogo ecumenico (314)
1936-1351=2,1 # American Journal of Criminal Justice|krimdok
0886-2605=2,1 # Journal of Interpersonal Violence|krimdok
1556-4886=2,1 # Victims & Offenders|krimdok
1478-9949=2,1 # The Journal of Forensic Psychiatry & Psychology|krimdok
1867-1756=2,1 # Race and Social Problems|krimdok
1888-0665=2,1 # Quadernos de criminología|krimdok
1077-8012=2,1 # Violence Against Women|krimdok
0022-0426=2,1 # Journal of Drug Issues|krimdok
1088-7679=2,1 # Homicide studies : an interdisciplinary & international journal|krimdok
2066-2203=2,1 # European journal of probation|krimdok
0316-0041=2,1 # Criminologie|krimdok
0093-8548=2,1 # Criminal justice and behavior|krimdok
2941-0789=1 # Forum Exegese und Hochschuldidaktik (2886)
0734-0168=2,1 # Criminal justice review|krimdok
1028-2580=2,1 # Contemporary justice review|krimdok
0393-3687=1 # Studi ecumenici (1067 itbk)
2035-7583=0$a1 # Rivista di storia e letteratura religiosa (977)
1871-8000=0$a1 # Images (3545)
1744-0572=NABZ # Global Crime|krimdok
2699-3406=1 # Curosr_ (3111)
2332-886X=2,1 # Criminology, criminal justice, law & society|krimdok
2323-5209=0 # Studia Orientalia Electronica (3709)
1707-7753=2,1 # Canadian journal of criminology and criminal justice|krimdok
2334-3745=NABZ # Perspectives on terrorism|krimdok
0392-1484=1 # Ho theologos (1283)
2211-6257=NABZ # Fascism : journal of comparative fascist studies|krimdok
2053-7158=0 # Correspondences (2868)
2747-4461=1 # Zeitschrift für altorientalische und biblische Rechtsgeschichte = Journal for ancient near eastern and biblical law (1548)
34190-9483=1 # Quaker studies (884)
0163-9625=NABZ # Deviant Behavior : An Interdisciplinary Journal|krimdok
2079-5971=NABZ # Oñati Socio-Legal Series|krimdok
2186-9952=0 # Religious Studies in Japan (3698)
IXTH-0004=1 # Herder-Korrespondenz Spezial (444)
1453-5165=0 # ARCHÆVS. Studies in the History of Religions (1775)
2940-9535=1 # Streit-Kultur (3570)
0771-3444=1 # Revue des Études Byzantines (1757)
0718-3399=NABZ # Política criminal : revista electrónica semestral de políticas públicas en materias penales|krimdok
2358-1956=NABZ # Revista Eletrônica de Direito Penal e Política Criminal|krimdok
1115-5035=0 # Religions' Educator (3697)
2718-9155=0 # PASCHR Journal (3696)
1813-3495=NABZ # SIAK-Journal|krimdok
2658-1531=0 # Przegląd religioznawczy (1432)
1226-3516=0 # Studies in Religion (3140)
2385-779X=NABZ # Revista de Victimologia|krimdok
2663-0818=0 # Religious Freedom (3695)
0378-7931=NABZ # Déviance et Société|krimdok
0039-3304=1 # Studia Patavina (1680)
2617-9792=0 # Ukrainian Religous Studies (2866)
2281-9347=1 # Rivista di teologia dell'evangelizzazione (978)
1043-500X=NABZ # Journal of offender monitoring|krimdok
IXTH-0003=1 # Rivista di pedagogia e scienze religiose (Z=2723)
2001-9424=1 # Svensk exegetisk årsbok (1110)
2510-1226=0 # Zeitschrift für Religion, Gesellschaft und Politik (3690)
1752-7716=NABZ # International journal of transitional justice|krimdok
1206-3312=0 # Space and Culture
2311-5661=0 # Journal for the study of the religions of Africa and its diaspora (2869)
1027-4103=0 # Religionen unterwegs (1507)
2687-2749=0 # Oksident (3139)
2627-8685=0 # Mythos Magazin (3522)
1878-8106=0 # Dynamics in the history of religions (2842)
2532-6740=0 # Occhiali : rivista sul Mediterraneo islamico (3120)
2409-9899=0 # Comparative mythology (3447)
1988-7949=NABZ # International e-journal of criminal sciences|krimdok
1525-7207=0 # Religion in the News (3315)
2154-8641=0 # The International Journal of Religion and Spirituality in Society (2735)
1864-1385=2,1 # International journal of conflict and violence|krimdok
2952-2196=1 # Archivo Dominicano (87)
1760-5776=0 # Cahiers d'études du religieux (3122)
2699-3074=1 # Mitteilungen zur kirchlichen Zeitgeschichte (732)
1572-9869=2,1 # European journal on criminal policy and research|krimdok
1477-3708=2,1 # European journal of criminology|krimdok
2769-1616=1 # Journal of Pentecostal and Charismatic Christianity (3684)
1046-8064=0 # Research in the social scientific study of religion (1481)
2949-8570=1 # Zeitschrift für medizinische Ethik (1267)
1553-0604=1 # Jewish Quarterly Review (1763)
1745-9133=2,1 # Criminology & public policy|krimdok
2009-7409=0 # Journal of the Irish Society for the Academic Study of Religions (3090)
1745-9125=2,1 # Criminology – An interdisciplinary journal|krimdok
0897-3644=0 # Pacific World (2139)
0011-1287=2,1 # Crime & delinquency|krimdok
1911-0219=2,1 # Canadian journal of criminology and criminal justice|krimdok
0007-0955=2,1 # British journal of criminology|krimdok
2414-8636=0 # Nidan: Journal for the Study of Hinduism (1857)
2155-1723=0 # IMW journal of religious studies (2923)
1877-6671=0 # The Journal of Rotterdam Islamic and Social Sciences (2077)
2571-242X=0 # e-Rhizome: journal for the study of religion, culture, society and cognition (3119)
2643-9247=0 # American Religion (3458)
2255-2715=0 # Journal of the Sociology and Theory of Religion (3459)
2532-1676=0 # Nuovo Giornale di Filosofia della Religione (3538)
0935-7467=1 # Spes Christiana (1047)
1198-6395=0 # Journal of Religion and Culture / Montréal (2765)
1469-0764=0 # Politics, Religion and Ideology (2855)
1982-8136=0 # Debates do NER (3506)
2343-4929=0 # Nordisk judaistik (2676)
2328-2177=0 # Cultural and religious studies (2526)
1710-8268=0 # Canadian Journal of Buddhist Studies (1946)
2237-6151=0$a1 # Sacrilegens (3363)
2156-7689=0$a1 # Politics, Religion and Ideology (2855)
2289-5639=0 # Intellectual Discourse (2006)
2041-1863=0 # Bulletin for the study of religion (1429)
1569-2108=NABZ # African and Asian Studies (3666)
2772-7955=1 # Journal of Black Religious Thought (3656)
1874-7167=NABZ # Journal of Persianate Studies (3620)
2589-7411=0 # Journal of religion and demography
2588-9559=0$a1 # Journal of Applied Animal Ethics Research (3551)
2588-9605=0$a1 # Journal for Continental Philosophy of Religion (3550)
2589-9198=0 # International Journal of Divination and Prognostication (3547)
1543-5725=0$a1 # The review of faith & international affairs
1210-3640=0 # Religio (1485)
1663-4837=NABZ # Crime, histoire & sociétés
1552-6119=NABZ # Child maltreatment
1572-9877=NABZ # Critical criminology – An international journal
1741-6604=NABZ # Crime, media, culture
2375-6330=1 # The Asbury Journal (1302)
2254-6227=1 # Scripta theologica (1023)
1573-0751=NABZ # Crime Law Soc Change
2372-2509=1 # Bulletin of medieval canon law (1719, KALDI)
2444-4170=NABZ # Behavior & Law Journal
2792-3045=1 # Archivo Agustiniano (88)
2159-6808=0$a1 # Journal of Religion and Violence (2073)
1872-0226=0 # Contemporary Islam (1959)
2196-6656=1 # Journal of Early Modern Christianity (2546)
1783-1512=1 # Journal of Coptic Studies (2046)
0080-5319=1 # Saeculum (1630)
1747-5414=0 # Religious Studies and Theology (919)
2070-5484=1 # The International Journal for Religious Freedom (IJRF) (481)
2282-2828=NABZ # Archivio Giuridico Filippo Serafini (2234)
2447-7443=1 # Vox scripturae (1227)
0012-4257=1 # Divus Thomas (321)
2035-3545=1 # Il diritto ecclesiastico (1725)
2328-6911=0$a1 # Religion & literature (910)
2640-2580=1 # Philosophia Christi (841)
2773-2096=1 # Handelingen (433)
0075-2541=1 # Jahrbuch für Antike und Christentum (517)
0165-2346=1 # Kerk en Theologie (601)
0570-1953=1 # L'Annee canonique (1728)
0896-8039=1 # Anglican and episcopal history (48)
2653-1372=1 # Reformed Theological Review (905)
1407-7841=0$a1 # Cel̜š (3651)
2724-573X=1 # Quaderni di storia religiosa medievale (3456)
2169-2289=0$a1 # Journal of the American Oriental Society (1530)
1757-6547=1 # The Australian journal of anthropology (2599)
1548-1409=1 # Anthropology and humanism (2598)
2699-3414=1 # Berliner Theologische Zeitschrift (129)
0212-1964=1 # Teología y catequesis (1126)
0585-766X=1 # Studium (1104)
0316-5345=1 # Science et esprit (1021)
1660-5578=1 # Hermeneutische Blätter (3571)
1827-790X=1 # Rivista di storia della Chiesa in Italia (976)
1122-5661=1 # Recollectio (896)
0033-9644=1 # Rassegna di teologia (891)
1529-1634=1 # Philosophia Christi (841)
0030-6487=1 # Ostkirchliche Studien (806)
0211-2582=1 # Misiones extranjeras (721)
0022-0469=1 # The Journal of Ecclesiastical History (1347)
0026-587X=1 # Miscellanea francescana (717)
0017-8160=1 # Harvard Theological Review (1313)
0340-6210=1 # Luther (664)
0036-9306=1 # Scottish Journal of Theology (1022)
1740-3553=1 # Journal of Anglican Studies (545)
0360-9669=1 # Horizons (459)
2195-9773=0$a1 # Philosophy, Theology and the Sciences (PTSc) (1907)
0009-6407=1 # Church History (237)
0042-3718=1 # Verdad y vida (1207)
2003-6248=1 # Svensk Teologisk Kvartalskrift
2199-1960=1 # DWI-Jahrbuch – Diakoniewissenschaft in Forschung und Lehre
0035-2209=1 # Revue des sciences philosophiques et théologiques : revue trimestrielle
2605-5147=1 # Estudios eclesiásticos : revista trimestral de investigaciòn e informaciòn teològica, publ.
0555-9308=1 # Zeitschrift für Pastoraltheologie (ZPTh)
2500-5413=1 # Revista Albertus Magnus
2699-5433=1 # Theologische Revue
2359-8107=1 # Review of Ecumenical Studies Sibiu
2156-4795=1 # American journal of theology and philosophy
0194-3448=1 # American journal of theology and philosophy
0210-7112=1 # Revista española de Teología
2041-952X=0 # International Journal for the Study of New Religions
1796-4407=0 # Uskonnontutkija - Religionsforskaren
2434-4397=0 # Bulletin of the International Institute for Buddhist Studies
1301-966X=0 # Dini Araştırmalar
0210-3877=1 # Phase: revista de pastoral litúrgica
0360-8808=1 # Journal of the Evangelical Theological Society
0007-4322=1 # Bulletin de littérature ecclésiastique
0006-1921=1 # Bibliotheca sacra
0025-9373=1 # The Mennonite quarterly review (1323)
0588-3237=1 # Colloquium (251)
1067-6341=1 # Journal of early Christian studies (559)
1086-3184=1 # Journal of early Christian studies (559)
0018-0645=1 # Herder-Korrespondenz (443)
0733-4273=1 # Journal of psychology and christianity (567)
2284-7308=1 # Perichoresis
2657-3555=1 # European Journal for the Study of Thomas Aquinas
1097-6566=1 # Stone-Campbell journal
1468-2265=1 # The Heythrop Journal
1468-2400=1 # International Journal of Systematic Theology
1467-8519=1 # Bioethics
2310-4430=1 # PATH
0082-7118=1 # Tyndale Bulletin
0254-4407=1 # Zwingliana
0023-9054=1 # Laval théologique et philosophique
1478-0542=1 # History Compass
0021-969X=1 # Journal of Church and State
0040-5671=1 # Theologische Literaturzeitung (ThLZ)
0014-3367=1 # Evangelical Quarterly
1540-6385=1 # Dialog
0034-8147=1 # Revista de espiritualidad
2174-0887=1 # Anuario de Historia de la Iglesia
0036-3537=1 # Salmanticensis
2595-5977=1 # Revista Eclesiástica Brasileira
2310-4430=1 # PATH
1853-9106=1 # DavarLogos
2792-4254=1 # Augustinus
2695-4397=1 # Archivo Teológico Granadino
0265-3788=1 # Transformation
2372-9988=0 # Studies in Chinese Religions
1871-2428=1 # Church History and Religious Culture
2593-0265=1 # TheoLogica
IXTH-0002=1 # Journal of the Grace Evangelical Society (Z=580)
1010-3872=1 # Ecclesia orans
1062-6549=1 # Cistercian studies quarterly
0025-8911=0$a1 # Mélanges de science religieuse
2628-5762=1 # Biblische Notizen
0521-8195=1 # Burgense : collectanea scientifica
0106-6749=1 # Kritisk forum for praktisk teologi
1934-1504=1 # Quaker History
2159-6875=1 # Jonathan Edwards studies : (JES)
0020-157X=1 # The Innes Review
0946-3178=1 # Imprimatur (ikr/Dakar)
1918-6371=1 # Toronto journal of theology
0043-2040=1 # Wege zum Menschen : Monatsschrift für Seelsorge und Beratung...
0026-976X=1 # Monitor ecclesiasticus (ikr/Dakar)
2248-9789=1 # Iustitia (ikr/Dakar)
2612-3746=1 # Angelicum (ikr/Dakar)
0943-7525=1 # Neue Zeitschrift für Arbeitsrecht : Zweiwochenschrift für die betriebliche Praxis (ikr/Dakar)
0514-6496=1 # Zeitschrift für Rechtspolitik (ikr/Dakar)
0721-880X=1 # Neue Zeitschrift für Verwaltungsrecht (ikr/Dakar)
0341-1915=1 # Neue Juristische Wochenschrift (ikr/Dakar)
0947-8094=1 # Kirche & Recht (ikr/Dakar)
0179-7387=1 # L' osservatore romano (ikr/Dakar)
0034-9372=1 # Revista española de derecho canónico (ikr/Dakar)
0948-0471=1 # De processibus matrimonialibus (ikr/Dakar)
0393-0327=1 # Communicationes (ikr/Dakar)
2199-4625=0$a1 # Journal of religious education
0009-7756=1 # La Ciudad de Dios - Revista Agustiniana (Z=3578)
0021-2059=1 # Israel exploration journal (BIlDI) (Z=1698)
0003-3286=1 # Anglican Theological Review (Z=51)
2605-3357=1 # Vergentis (Kaldi) (Z=2915)
1025-6555=1 # Mitteilungen zur Christlichen Archäologie
1126-9200=1 # Quaderni di storia religiosa medievale
2365-8185=1 # Spiritual Care
2520-0089=1 # Ius missionale : annuario della Facoltà di Diritto Canonico (ikr/Dakar)
0556-7378=1 # Revue de droit canonique (ikr/Dakar)
0949-7137=1 # Neue Zeitschrift für Arbeitsrecht (ikr/Dakar)
2196-0119=1 # Zeitschrift für Arbeitsrecht und Tarifpolitik in Kirche und Caritas (ikr/Dakar)
1981-7096=1 # Revista brasileira de direito canônico (ikr/Dakar)
0934-8603=1 # Neue Zeitschrift für Verwaltungsrecht (ikr/Dakar)
2815-1828=1 # Asia journal of theology
2627-6062=1 # Journal of Ethics in Antiquity and Christianity
2450-4629=1 # Annuarium Iuris Canonici (ikr/Dakar)
2513-1389=1 # Zeitschrift für christlich-jüdische Begegnung im Kontext
1095-9270=NABZ # International Journal of Nautical Archaeology
2567-9384=1 # Jahrbuch der Religionspädagogik (JRP)
2295-9025=1 # Sacris Erudiri
2297-1254=1 # Revue de théologie et de philosophie
2312-878X=1 # Missionalia
0043941X=1 # Worship
0034-1258=1 # Recherches de science religieuse
1466-769X=1 # Nursing Philosophy
1120-6462=1 # Ius ecclesiae (IKR)
0721-1937=1 # Anzeiger für die Seelsorge (IKR)
0323-4142=1 # Zeitschrift der Savigny-Stiftung für Rechtsgeschichte. Kanonistische Abteilung (IKR)
2304-4896=1 # Zeitschrift der Savigny-Stiftung für Rechtsgeschichte. Kanonistische Abteilung (IKR)
0022-6858=1 # The Jurist (IKR)
1240-3032=1 # Revue Biblique (1892-1940) (JSTOR retro)
0035-0907=1 # Revue Biblique (1946-) (JSTOR retro)
2192-3124=0$a1 # Zeitschrift des Deutschen Palästina-Vereins (1878-1945) (JSTOR retro)
0035-2403=1 # Revue d'histoire et de philosophie religieuses
2269-479X=0$a1 # Revue d'histoire et de philosophie religieuses
0012-1169=0$a1 # Zeitschrift des Deutschen Palästina-Vereins (1953-) (JSTOR retro)
0044-2895=1 # Zeitschrift für katholische Theologie (JSTOR retro)
20536267=1 # The Huguenot Society Journal
2053-6267=1 # The Huguenot Society Journal
2326-6236=1 # The jurist : studies in church law and ministry
2567-9384=1 # Jahrbuch der Religionspädagogik
0031-0328=1 # Palestine Exploration Quarterly
0040-5736=1 # Theology Today
1533-791X=1 # Logos
0458-063X=1 # Liturgy
0020-9643=1 # Interpretation
1476-993X=1 # Currents in Biblical Research
1536-3759=1 # Christian Higher Education
2663-6573=1 # Journal for Semitics
2353-4877=1 # Ecumeny and Law
2391-4327=1 # Ecumeny and Law
2413-2470=1 # Revista Theologika
2385-8907=1 # Edinost in dialog
2335-4127=1 # Edinost in dialog
2304-8557=1 # Koers - Bulletin for Christian Scholarship
0010-3497=1 # Communicatio Socialis
0033-1767=1 # Protestantesimo
0039-6761=1 # Svensk teologisk kvartalskrift
0010-5236=1 # Concilium-EnglischeAusgabe!!!!
00105236=1 # Concilium-EnglischeAusgabe!!!!
2474-1809=0 # Antisemitism Studies
1573-0697=1 # Journal of Business Ethics
0040-571X=1 # Theology
2413-9467=1 # STJ – Stellenbosch Theological Journal
0718-9273=1 # Veritas
1018-1539=1 # Österreichisches Religionspädagogisches Forum
2593-7308=1 # Journal of Septuagint and Cognate Studies
1868-7261=0$a1 # Philosophische Rundschau
0031-8159=0$a1 # Philosophische Rundschau
0953-9468=1 # Studies in Christian Ethics
1758-6623=1 # The Ecumenical Review
1783-1326=0$a1 # Ancient Near Eastern Studies
2633-0695=1 # Journal for Interdisciplinary Biblical Studies
0173-0339=1 # Religionspädagogische Beiträge
1783-1709=1 # Questions liturgiques
2295-6093=1 # Augustiniana
2385-2062=1 # Biblica
2295-2837=1 # Counseling et spiritualité
1783-1423=1 # Ephemerides theologicae Lovaniense
1783-1431=1 # Ethical perspectives
2325-4793=1 # Journal of septuagint and cognate studies
1783-2446=1 # Journal of the European Society of Women in Theological Research
1783-161X=1 # Louvain studies
0024-7324=1 # Lumen vitae
1783-1652=1 # Ons geestelijk erf
1783-1717=1 # Recherches de théologie et philosophie médiévales
2466-8583=1 # Revue biblique
2506-7567=1 # Revue de Qumran
1783-8401=1 # Revue théologique de Louvain
2295-3027=1 # Studia canonica
1783-1814=1 # Studies in spirituality
2295-5186=1 # Theoforum
1783-1520=1 # The journal of Eastern Christian studie
2294-6209=1 # Byzantion
1875-659X=0 # Bibliotheca orientalis
1783-1342=1 # Aram periodical
2466-6815=1 # Semitica
0065-0382=0$a1 # Ancient Near Eastern Studies
2033-5016=1 # Lias
2507-0347=0 # The Journal of the International Association of Buddhist Studies
1783-175X=0 # Revue des études juives
2593-0486=1 # Marriage, families & spirituality
0049-3449=1 # Teología y vida
2504-5156=1 # Vulgata in Dialogue
2159-2063=1 # Journal for the Study of Paul and His Letters
0364-0094=1 # AJS Review
1475-4541=1 # AJS Review
2663-6573=1 # Journal for Semitics
2074-7705=1 # Verbum et Ecclesia
2163-2529=1 # The Catholic Biblical Quarterly
0792-3910=1 # Jewish Bible Quarterly
2153-7925=1 # Proceedings of the American Catholic Philosophical Association
2507-0290=1 # Analecta Bollandiana
2748-6419=0$a1 # Advances in Ancient, Biblical, and Near Eastern Research
1367-4676=0 # Mental Health, Religion & Culture
1542-3050=1 # Journal of Pastoral Care & Counseling
1943-1562=0 # Psychology of religion and spirituality
1941-1022=0 # Psychology of religion and spirituality
2589-529X=0$a1 # Brill Research Perspectives in Religion and Education
2589-5303=0$a1 # Brill Research Perspectives in Religion and Education
2468-8878=0$a1 # Brill Research Perspectives in Religion and the Arts
2468-886X=0$a1 # Brill Research Perspectives in Religion and the Arts
2468-3485=1 # Brill Research Perspectives in Theology
2468-3493=1 # Brill Research Perspectives in Theology
2589-5842=0$a1 # Brill Research Perspectives in Religion and Politics
2589-5850=0$a1 # Brill Research Perspectives in Religion and Politics
2589-711X=0$a1 # Brill Research Perspectives in Religion and Psychology
2589-7128=0$a1 # Brill Research Perspectives in Religion and Psychology
2589-8809=1 # Brill Research Perspectives in Theological Traditions
2589-8795=1 # Brill Research Perspectives in Theological Traditions
2542-498X=1 # Brill Research Perspectives in Quaker Studies
2542-4971=1 # Brill Research Perspectives in Quaker Studies
2051-6770=1 # The Bible Translator
2468-5534=0$a1 # Journal of Islamic Ethics
2468-5542=0$a1 # Journal of Islamic Ethics
2589-255X=1 # Textus
0082-3767=1 # Textus
1893-4773=1 # Tidsskrift for Praktisk Teologi
1744-9626=1 # Journal of Global Ethics
2366-0597=1 # Forum Exegese und Hochschuldidaktik: Verstehen von Anfang an (VvAa)
2405-7649=1 # Brill Research Perspectives in Biblical Interpretation
2405-7657=1 # Brill Research Perspectives in Biblical Interpretation
1934-9637=0$a1 # Journal of Spirituality in Mental Health
2054-1988=0$a1 # Journal of Holy Land and Palestine Studies
2034-3523=1 # Journal of Medieval Monastic Studies
2634-7318=1 # The Global Anglican
0092-4245=1 # Wesleyan theological journal
0044-3123=0$a1 # Zeitschrift für Missionswissenschaft und Religionswissenschaft
0007-7704=1 # Byzantinische Zeitschrift
1868-9027=1 # Byzantinische Zeitschrift
0342-2410=1 # Verkündigung und Forschung
2198-0454=1 # Verkündigung und Forschung
2198-0489=1 # Archiv für Reformationsgeschichte - Archive for Reformation History
0048-1009=1 # Novum Testamentum
1568-5365=1 # Novum Testamentum
1744-1366=1 # Ecclesiology
1745-5316=1 # Ecclesiology
2542-6583=0$a1 # NTT Journal for Theology and the Study of Religion
1741-0819=1 # Journal of Youth and Theology
2405-5093=1 # Journal of Youth and Theology
1872-5171=1 # International Journal of Public Theology
1569-7320=1 # International Journal of Public Theology
1871-2207=1 # Horizons in Biblical Theology
0195-9085=1 # Horizons in Biblical Theology
2033-4273=1 # ET-Studies
0044-3441=0$a1 # Zeitschrift für Religions- und Geistesgeschichte
1570-0739=0$a1 # Zeitschrift für Religions- und Geistesgeschichte
1862-5886=0 # Zeitschrift für junge Religionswissenschaft
1612-2941=0 # Marburg Journal of Religion
2363-6696=0 # Entangled Religions
0943-3058=0 # Method and theory in the study of religion
1570-0682=0 # Method and theory in the study of religion
0141-6200=0$a1 # British Journal of Religious Education
1749-4907=0$a1 # Journal for the study of religion nature and culture
17494907=0$a1 # Journal for the Study of Religion Nature and Culture
1749-4915=0$a1 # Journal for the Study of Religion Nature and Culture
1574-3012=0$a1 # Religion & theology
1023-0807=0$a1 # Religion & theology
0022-5762=1 # Judaism
1570-0631=1 # Journal for the study of Judaism
0022-4480=1 # Journal of Semitic studies !!pppn
1477-8556=1 # Journal of Semitic studies !!eppn
0022-4235=0$a1 # The journal of religious thought
2056-6689=0$a1 # The journal of Jewish studies
0591-2385=0 # Zygon
1467-9744=0 # Zygon
0891-5881=0 # Dialogue and alliance
0037-7686=0 # Social compass
1461-7404=0 # Social compass
0888-3769=0$a1 # Religion and literature
0029-4500=0$a1 # Religion and literature
0034-4125=0 # Religious studies
1469-901X=0 # Religious studies
0018-2710=0 # History of religions
1545-6935=0 # History of religions
0384-9694=0 # Journal of religious ethics
1467-9795=0 # Journal of religious ethics
03849694=0 # Journal of religious ethics
0022-4200=0 # Journal of religion in Africa
1570-0666=0 # Journal of religion in Africa
1092-6690=0 # Nova religio
1541-8480=0 # Nova religio
1079-9265=0$a1 # Religion and the arts
1568-5292=0$a1 # Religion and the arts
0008-4298=0 # Studies in religion = Sciences religieuses
2042-0587=0 # Studies in religion = Sciences religieuses
1380-7854=0 # Medieval encounters
1570-0674=0 # Medieval encounters
0319-485X=0 # Religious studies review
1748-0922=0 # Religious studies review
0497-1817=0 # Temenos
2342-7256=0 # Temenos
0890-1112=0 # Journal of ritual studies
0011-1953=0$a1 # Cross currents
1939-3881=0$a1 # Cross currents
0229-2807=0$a1 # ARC
1023-0807=0$a1 # Religion and theology
1574-3012=0$a1 # Religion and theology
0809-7291=0 # Nordic journal of religion and society
0802-0167=0 # Nordic journal of religion and society
1890-7008=0 # Nordic journal of religion and society
1069-4404=0 # Sociology of religion
1759-8818=0 # Sociology of religion
0029-5973=0 # Numen PISSN
1570-0585=0 # Arabica : journal of Arabic and islamic studies
0570-5398=0 # Arabica : journal of Arabic and islamic studies
1568-5276=0 # Numen
1092-1311=0$a1 # The journal of religion and film
0014-701X=0 # Faith and freedom
0283-8486=0 # Journal of prehistoric religion
1861-5813=0 # Online - Heidelberg Journal of Religions on the Internet
0342-2356=1 # Ugarit-Forschungen
1086-3249=1 # Kennedy Institute of Ethics journal
0889-048X=0 # Agriculture and human values !!pppn
1572-8366=0 # Agriculture and human values !!eppn
0959-6410=0 # Islam and Christian-Muslim relations !!pppn
1469-9311=0 # Islam and Christian-Muslim relations
0034-4087=0$a1 # Religious education !!pppn
0022-0256=0 # Journal of cuneiform studies !!pppn
1783-1806=0 # Studies in Interreligious Dialogue
0926-2326=0 # Studies in Interreligious Dialogue
1867-4240=0 # Transformierte Buddhismen
1583-0039=0 # Journal for the Study of Religions and Ideologies
2199-4463=0 # Religion in the Roman Empire
0003-1224=2,1 # American sociological review Online Publikation|krimdok
1862-2593=2,1 # Berliner Journal für Soziologie Online Publikation|krimdok
0268-5809=2,1 # International sociology Online Publikation|krimdok
2196-8225=2,1 # Praxis der Kinderpsychologie und Kinderpsychiatrie Online Publikation|krimdok
2190-6238=2,1 # Psychologische Rundschau Online Publikation|krimdok
1461-7439=2,1 # Theoretical criminology Online Publikation|krimdok
1438-9460=2,1 # Zeitschrift für Sexualforschung Online Publikation|krimdok
0967-8948=0 # Journal of the British Association for the Study of Religions - formerly DISKUS
2516-6379=0 # Journal of the British Association for the Study of Religions - formerly DISKUS
2342-7256=0 # Temenos=nordic journal of comparative religion
1799-3121=0 # Approaching religion
1677-1222=0 # Rever=revista de estudos da religião
1475-5610=0 # Culture and Religion
1549-6538=0 # Journal of Religion
0022-4189=0 # Journal of Religion
1722-4705=0 # Religioni e società
0394-9397=0 # Religioni e società
0002-7189=0 # Journal of the American Academy of Religion
1477-4585=0 # Journal of the American Academy of Religion
1988-3269=0 # 'Ílu
1135-4712=0 # 'Ílu
0048-721X=0 # Religion
2365-3140=0 # Interdisciplinary journal for religion and transformation in contemporary society
1983-2850=0 # Revista Brasileira de História das Religiões
2179-0019=0 # Plura revista de estudos de religião
2175-5841=0 # Horizonte
2408-9370=0 # Journal for religion film and media
2414-0201=0 # Journal for religion film and media
2572-4088=0 # Journal of sociology and Christianity
0035-1423=0 # Histoire des Religions
2196-7954=0$a1 # Journal of ancient Judaism
1869-3296=0$a1 # Journal of ancient Judaism
1179-7231=0$a1 # Relegere
1553-9962=0 # Religion and Society in Central and Eastern Europe
2006-5442=0 # Journal of religion and human relations
2053-6712=0 # Secularism and Nonreligion
2509-9965=0 # International journal of Latin American religions
1573-6571=0 # Journal of Religion and Health
0022-4197=0 # Journal of Religion and Health
1467-9809=0 # Journal of religious history
2211-4866=0 # Review of Religious Research
0393-8417=0 # Studi e materiali di storia delle religioni
1553-3913=0 # Journal of feminist studies in religion
8755-4178=0 # Journal of feminist studies in religion (Print-ISSN)
1050-8619=0 # The International Journal for the Psychology of Religion
1468-5906=0 # Journal for the Scientific Study of Religion
0021-8294=0 # Journal for the Scientific Study of Religion
1749-8171=0 # Religion compass
1011-7601=0 # Journal for the Study of Religion
2150-9301=0 # Religion and society
2150-9301=0 # Religion and society
1689-8311=0 # European Journal for Philosophy of Religion
0020-7047=0 # International Journal for Philosophy of Religion
1572-8684=0 # International Journal for Philosophy of Religion
1534-8423=0 # Journal of Media and Religion
1888-346X=0 # Bandue: revista de la Sociedad Española de Ciencias de las Religiones
2035-6455=0 # Historia Religionum
1743-2200=0 # Material Religion=The Journal of Objects Art and Belief
2049-7555=0 # Journal for the Cognitive Science of Religion
2049-7563=0 # Journal for the Cognitive Science of Religion
2156-8022=0 # Mormon studies Review
2041-1863=0 # Bulletin for the Study of Religion
2041-1871=0 # Bulletin for the Study of Religion
0963-7494=0 # Religion State and Society
0094-7342=0 # Journal of the Mormon History
0012-2157=0 # Dialogue: A Journal of Mormon Thought
0392-7288=0 # Islamochristiana
0304-1042=0 # Japanese Journal of Religious Studies
1904-8181=0 # Religionsvidenskabeligt Tidsskrift
2325-8780=0 # journal for spiritual and consciousness studies
1527-9472=0 # Buddhist-Christian Studies
0882-0945=0 # Buddhist-Christian Studies
0737-769X=0 # Journal of Chinese Religions
2047-704X=0 # Journal for the Academic Study of Religion
2047-7058=0 # Journal for the Academic Study of Religion
1533-8568=0 # Religion and American Culture
1052-1151=0 # Religion and American Culture
1467-9418=0 # Reviews in Religion & Theology
2374-4766=0 # Journal of Book of Mormon Studies
2374-4774=0 # Journal of the Book of Mormon Studies
1361-7672=0 # Journal of Beliefs & Values
1353-7903=0 # Journal of Contemporary Religion
2154-7270=0 # International Journal of Cultic Studies
1463-9947=0 # Contemporary Buddhism
0718-4727=0 # Revista Cultura & Religión
0012-8708=0 # Eastern Buddhist
1743-0615=0 # Fieldwork in Religion
1743-0623=0 # Fieldwork in Religion
1463-9955=0 # Implicit Religion
1743-1697=0 # Implicit Religion
1527-6457=0 # Journal of Global Buddhism
2167-2040=0 # Journal of Korean Religions
2093-7288=0 # Journal of Korean Religions
1703-289X=0 # The Journal of Religion and Popular Culture
2153-599X=0 # Religion Brain & Behavior
1983-7828=0 # Fragmentos de Cultura
2159-3159=0 # Greek Roman and Byzantine Studies
0017-3916=0 # Greek Roman and Byzantine Studies
1757-2460=0 # Journal for Research into Freemasonry and Fraternalism
1757-2479=0 # Journal for Research into Freemasonry and Fraternalism
1357-6275=0 # Mortality
2236-6296=0 # Numen
0335-5985=0 # Archives de sciences sociales des religions
0024-4414=0$a1 # Listening Journal of Communication Ethics Religion and Culture
2297-6469=0 # Zeitschrift für Religionskunde
2331-2521=0 # Journal of disability & religion
2044-0243=0 # Journal for the Study of Spirituality
1941-1022=0 # Psychology of Religion and Spirituality
1755-0483=0 # Politics and Religion
1755-0491=0 # Politics and Religion
2364-382X=0 # Gamevironments
0035-2217=0$a1 # Revue des Sciences Religieuses
2079-7222=0 # Indo-Pacific Journal of Phenomenology
2154-7270=0 # International Journal of Cultic Studies
2396-9393=0$a1 # International bulletin of mission research
2165-5413=0 # Journal of Africana Religions
2165-5405=0 # Journal of Africana Religions
1552-8030=0 # Journal of Religion Spirituality & Aging
2057-4517=0 # The Journal of Religious History Literature and Culture
0362-1596=0 # Parabola
1754-517X=0 # Journal for late antique religion and culture
0890-0132=0 # Journal of interdisciplinary studies
1872-0226=0 # Contemporary Islam
2196-8802=0 # International Journal of Dharma Studies
1573-0395=0 # Journal of Indian Philosophy
1471-6917=0 # Journal of Islamic Studies
0955-2340=0 # Journal of Islamic Studies
0276-1114=0 # Modern Judaism - A Journal of Jewish Ideas and Experience
1086-3273=0 # Modern Judaism - A Journal of Jewish Ideas and Experience
1756-4255=0 # The Journal of Hindu Studies
1756-4263=0 # The Journal of Hindu Studies
1556-3537=0 # Anthropology of Consciousness
1871-014X=2,1 # Asian Journal of Criminology
0004-8658=2,1 # Australian & New Zealand Journal of Criminology
1894-4183=2,1 # Bergen Journal of Criminal Law & Criminal Justice
1743-4629=2,1 # Crime Prevention and Community Safety
0093-8548=2,1 # Criminal Justice and Behavior
0887-4034=2,1 # Criminal Justice Policy Review
1478-601X=2,1 # Criminal Justice Studies
1748-8958=2,1 # Criminology & Criminal Justice
1132-9955=2,1 # Revista de derecho penal y criminología
1057-5677=2,1 # International Criminal Justice Review
0192-4036=2,1 # International Journal of Comparative and Applied Criminal Justice
1756-0616=2,1 # International Journal of Law, Crime and Justice
0306-624X=2,1 # International Journal of Offender Therapy and Comparative Criminology
1461-3557=2,1 # International Journal of Police Science & Management
0269-7580=2,1 # International Review of Victimology
2161-1874=2,1 # Journal of Addictions & Offender Counseling
1043-9862=2,1 # Journal of Contemporary Criminal Justice
0735-648X=2,1 # Journal of Crime and Justice
2090-7753=2,1 # Journal of Criminology
2090-777X=2,1 # Journal of Criminology
2199-465X=2,1 # Journal of Developmental and Life-Course Criminology
1572-8315=2,1 # Journal of Experimental Criminology
1573-3750=2,1 # Journal of Experimental Criminology
1573-7799=2,1 # Journal of Quantitative Criminology
2044-8333=2,1 # Legal and Criminological Psychology
1043-9463=2,1 # Policing and Society
0032-8855=2,1 # The Prison Journal
0264-5505=2,1 # Probation Journal
1068-316X=2,1 # Psychology, Crime & Law
1462-4745=2,1 # Punishment & Society
0954-6553=2,1 # Terrorism and Political Violence
1362-4806=2,1 # Theoretical Criminology
1936-4830=2,1 # Trends in Organized Crime
0897-4454=2,1 # Women & Criminal Justice
1541-2040=2,1 # Youth Violence and Juvenile Justice
2050-3032=0 # Critical Research on Religion
2056-6093=0 # Journal of Religious and Political Practice
2397-348X=0 # Interreligious Studies and Intercultural Theology
2617-3697=0$a1 # Journalforreligion,filmandmedia
1930-1200=0$a1 # Contagion: Journal of Violence, Mimesis, and Culture
1557-0274=0$a1 # The Review of Faith & International Affairs
1743-1735=0 # Pomegranate: The International Journal of Pagan Studies
1613-0928=0 # Der Islam
0003-9659=0 # Archives de sociologie des religions
1567-9896=0 # Aries
1570-0593=0 # Aries
1436-3038=0$a1 # Archiv für Religionsgeschichte
0043-2539=0 # Die Welt des Islams
1570-0607=0 # Die Welt des Islam
1477-285X=0$a1 # The Journal of Jewish Thought and Philosophy
1053-699X=0$a1 # The Journal of Jewish Thought and Philosophy
1871-031X=0$a1 # Religion & Human Rights
1871-0328=0$a1 # Religion & Human Rights
1571-7283=0$a1 # Zutot
1875-0214=0$a1 # Zutot
1862-9156=0$a1 # Naharaim
1862-9148=0$a1 # Naharaim
1874-8945=0$a1 # Social Sciences and Missions
1874-8937=0$a1 # Social Sciences and Missions
00352217=0$a1 # Revue des sciences religieuses
0267-1700=0$a1 # Religion Today
2057-5831=0 # Body and Religion
1877-5233=0 # Annual review of the sociology of religion
2009-7379=0 # International Journal of Religious Tourism and Pilgrimage
2211-792X=0 # Journal of Muslims in Europe
2211-7954=0 # Journal of Muslims in Europe
2210-5697=0 # International Journal for the Study of Skepticism
2210-5700=0 # International Journal for the Study of Skepticism
1874-8910=0 # Journal of religion in Europe : JRE
1874-8929=0 # Journal of religion in Europe : JRE
2210-5948=0 # Journal of Sufi Studies
2210-5956=0 # Journal of Sufi Studies
1363-5247=0 # Worldviews : global religions, culture and ecology
1568-5357=0 # Worldviews : global religions, culture and ecology
1568-4857=0$a1 # The Review of Rabbinic Judaism : ancient, medieval and modern
1570-0704=0$a1 # The Review of Rabbinic Judaism : ancient, medieval and modern
0084-6724=0 # Archive for the psychology of religion
1573-6121=0 # Archive for the psychology of religion
2031-5929=0 # Annali di scienze religiose
2077-1444=0 # Religions
2232-1969=0 # Al-Bayān
2232-1950=0 # Al-Bayān
1394-3723=0 # Al-Bayān
1569-2078=0 # Hawwa : journal of woman in the Middle East and the Islamic world
1569-2086=0 # Hawwa : journal of woman in the Middle East and the Islamic world
0019-7246=0 # Indo-Iranian Journal
1572-8536=0 # Indo-Iranian Journal
1569-2124=0 # Journal of ancient Near Eastern religions
1569-2116=0 # Journal of ancient Near Eastern religions
0943-8610=0$a1 # Zeitschrift für Religionswissenschaft : ZfR
2194-508X=0$a1 # Zeitschrift für Religionswissenschaft : ZfR
2214-3947=0 # Review of Religion and Chinese Society
2214-3955=0 # Review of Religion and Chinese Society
1958-5705=0 # Studia Islamica
0585-5292=0 # Studia Islamica
2532-2990=0 # The Journal of CESNUR
1662-4653=0 # Asdiwal : revue genevoise d'anthropologie et d'histoire des religions
0028-212X=0$a1 # NTT Journal
2164-6279=0$a1 # Journal of Hindu-Christian studies
1025-9996=0 # European journal of jewish studies
1872-471X=0 # European journal of jewish studies
0776-3824=0 # Kernos
1930-3777=0$a1 # Studies in christian-jewish relations
2212-4810=0 # Journal of law, religion and state
2212-6465=0 # Journal of law, religion and state
0010-7557=0 # Contemporary religions in Japan
2183-3737=0 # Revista Lusófona de Ciência das Religiões
2211-8993=0 # Muqarnas Online
0732-2992=0 # Muqarnas Online
2044-0243=0 # Journal for the Study of Spirituality
2673-4273=0$a1 # Judaica. Neue digitale Folge
2451-280X=1 # Verbum Vitae
2019-0050=0 # Journal of religion and popular culture
2109-9502=1 # Revue d'histoire de l'Eglise de France
2050-8999=0 # Journal of Chinese religions
2041-3599=0$a1 # PentecoStudies
1871-7691=0$a1 # PentecoStudies
0035-6573=0$a1 # Rivista di storia e letteratura religiosa
2589-8051=0 # Religion and Gender
1878-5417=0 # Religion and Gender
1047-7845=0$a1 # Journal of Religious & Theological Information
1865-9438=0$a1 # Aschkenas
1016-4987=0$a1 # Aschkenas
0003-0279=0$a1 # Journal of the American Oriental Society
0043-1575=1 # The Way
1210-3640=0 # Religio: revue pro religionistiku
2336-4475=0 # Religio: revue pro religionistiku
2158-1681=1 # Hebrew Studies
1945-9718=1 # Franciscan Studies
0393-6805=1 # Henoch
0040-5701=1 # Theologische Zeitschrift (Digitalisate)
2176-0985=0$a1 # Mandrágora
2153-6945=1 # Newman Studies Journal
2473-3725=1 # The Thomist
0580-1400=1 # Münchener Theologische Zeitschrift
1010-7215=1 # Lateranum
2589-7454=1 # Brill Research Perspectives in Jesuit Studies
2589-7446=1 # Brill Research Perspectives in Jesuit Studies
1612-9792=1 # Kierkegaard Studies Yearbook
2162-3937=1 # Journal of Ecumenical Studies
2709-8435=1 # Zeitschrift für Theologie und Philosophie
2611-7649=1 # Teresianum
1052-4533=1 # The Studia Philonica Annual
0948-0587=1 # Zeitschrift für Altorientalische und Biblische Rechtsgeschichte / Journal for Ancient Near Eastern and Biblical Law
0360-9049=1 # Hebrew Union College Annual
2507-0118=1 # Transeuphratène
1089-7747=1 # TC: A Journal of Biblical Textual Criticism
1551-3432=1 # Journal of Scriptural Reasoning
1661-3317=1 # Lectio Difficilior
2329-4434=1 # Journal of the Bible and its Reception
1676-3394=1 # Ribla - Revista de interpretação bíblica latino-americana
0935-7335=0 # EthikinderMedizin
1437-1618=0 # EthikinderMedizin
2161-8534=1 # American Catholic Studies
0038-2876=0 # The South Atlantic quarterly
1573-0948=0 # Studies in East European Thought
0778-8304=0$a1 # Trajecta
2665-9484=0$a1 # Trajecta
0137-2432=0 # Studia Religiologica
2084-4077=0$a1 # Studia Religiologica
2660-7743=1 # Isidorianum
1010-9919=1 # Old Testament Essays
1203-1542=1 # The Journal of Hebrew Scriptures
2637-7500=0$a1 # Socio-Historical Examination of Religion and Ministry
2637-7519=0$a1 # Socio-Historical Examination of Religion and Ministry
2450-4955=1 # Philosophy and Canon Law
2451-2141=1 # Philosophy and Canon Law
23744766=0 # JournalofBookofMormonStudies
2374-4774=0 # JournaloftheBookofMormonStudies
1552-146X=0 # Hastings Center Report
2155-7594=0 # Journal of Childhood and Religion
0006-0895=1 # The Biblical Archaeologist
2792-260X=1 # Estudio Agustiniano
2165-9214=0 # Journal of religion, media and digital culture
2588-8099=0 # Journal of religion, media and digital culture
1664-0136=0$a1 # ThéoRèmes. Penser le religieux
2141-7040=0 # Ilorin Journal of Religious Studies
2617-1953=1 # Limina
1820-659X=0 # Politikologija religije - Politics and Religion Journal
19809425=0 # Revista Ciências da Religião - História e Sociedade
1980-9425=0 # Revista Ciências da Religião - História e Sociedade
1751-2697=0 # Religions of South Asia
17512697=0 # Religions of South Asia
1893-0271=1 # Teologisk tidsskrift
1893-0263=1 # Teologisk tidsskrift
1661-3880=0$a1 # Schweizerische Zeitschrift für Religions- und Kulturgeschichte
2764-1287=1 # Estudos Bíblicos
1472-2089=1 # International congregational journal
1527-2028=0 # Jewish social studies
0253-7222=0 # Journal of Dharma
1216-7827=0 # Shaman
12167827=0 # Shaman
0739-7046=0$a1 # Faith and Philosophy
07397046=0$a1 # Faith and Philosophy
2284-3892=0 # Annali di studi religiosi
22843892=0 # Annali di studi religiosi
1434-5935=0$a1 # Journal of religious culture = Journal für Religionskultur
0044-2690=1 # Zeitschrift für evangelisches Kirchenrecht (ZevKR) (IKR)
1868-7369=1 # Zeitschrift für evangelisches Kirchenrecht (ZevKR)(IKR)
0573-2018=1 # Compostellanum
0003-6064=1 # Antonianum
2309-9089=1 # Acta Theologica
2034-6468=1 # Apocrypha
1065-223X=1 # Bulletin for Biblical Research
1868-7032=1 # Early Christianity (EC)
0014-1437=1 # Estudios bíblicos
0214-2996=1 # Filología neotestamentaria
2192-2276=1 # Hebrew Bible and Ancient Israel (HeBAI)
0146-4094=1 # Hebrew Studies
0021-9231=1 # Journal of Biblical Literature
0179-7239=1 # Kirche und Israel
2507-0428=1 # Liber Annuus
1094-2076=1 # Near Eastern Archaeology
2518-4628=1 # Neotestamentica
0028-6885=1 # New Testament Studies
1469-8145=1 # New Testament Studies
2312-3621=1 # Old Testament Essays
2412-2467=1 # Protokolle zur Bibel
2305-445X=1 # Scriptura
1435-2249=1 # ZNT – Zeitschrift für Neues Testament
1613-0103=1 # Zeitschrift für die alttestamentliche Wissenschaft
1613-009X=1 # Zeitschrift für die neutestamentliche Wissenschaft
2470-5616=1 # Lutheran quarterly
1972-2516=0 # Mythos. Rivista di Storia delle Religioni
2535-8863=0 # Journal of Historical Network Research
1982-2650=0 # Ciencias Sociales y Religión/Ciências Sociais e Religião
0017-4114=1 # Gregorianum : periodicum trimestre a Pontificia Universitate Gregoriana editum
IXTH-0001=0$a1 # The @journal of gods and monsters
2161-007X=NABZ # Counseling and values
0379-9557=NABZ # Theological Review
1086-3222=NABZ # Journal of the history of ideas
1468-2303=NABZ # History and theory
0018-2656=NABZ # History and theory
0307-5133=NABZ # The Journal of Egyptian Archaeology
1357-6275=NABZ # Mortality
1469-9885=NABZ # Mortality
1540-6253=NABZ # Journal of Chinese Philosophy
0301-8121=NABZ # Journal of Chinese Philosophy
1467-9205=NABZ # Philosophical Investigations
1753-1055=NABZ # Journal of Eastern African Studies
0022-0221=NABZ # Journal of cross-cultural psychology
0021-9096=NABZ # Journal of Asian and African Studies
1548-1352=NABZ # Ethos
1359-1835=NABZ # Journal of material culture
1460-3586=NABZ # Journal of material culture
1475-4967=NABZ # Middle East Policy
1568-5209=NABZ # Journal of the Economic and Social History of the Orient
0022-4995=NABZ # Journal of the Economic and Social History of the Orient
0725-6868=NABZ # Journal of Intercultural Studies
0035-2160=NABZ # Revue des questions scientifiques
1050-2289=0 # Journal of religious gerontology
2213-8617=0 # Oriente Moderno
0030-5472=0 # Oriente Moderno
1822-4571=0 # Religija ir kultūra
2521-6465=0 # Chabaršy
583217141=1 # KNA, Katholische Nachrichten-Agentur (Zs-PPN, IKR)
613737075=1 # Amtsblatt der Erzdiözese Freiburg (AB-PPN, IKR)
856427438=1 # Kirchliches Amtsblatt für das Bistum Dresden-Meißen (AB-PPN, IKR)
165667427=1 # Kirchliches Amtsblatt für das Bistum Dresden-Meißen (AB-PPN, IKR)
1677381620=1 # Amtsblatt des Erzbistums Berlin (AB-PPN, IKR)
239086627=1 # Amtsblatt des Erzbistums Berlin (AB-PPN, IKR)
565627228=1 # Kirchliches Amtsblatt : Erzbistum Hamburg (AB-PPN, IKR)
18265169X=1 # Kirchliches Amtsblatt : Erzbistum Hamburg (AB-PPN, IKR)
1672844088=1 # Kirchliches Amtsblatt für die Diözese Fulda (AB-PPN, IKR)
1728922038=1 # Amtsblatt der Österreichischen Bischofskonferenz (AB-PPN, IKR)
1738254771=1 # Amtsblatt des Bistums Limburg (AB-PPN, IKR)
1040236065=1 # Kirchliches Amtsblatt für das Bistum Essen (AB-PPN, IKR)
167405373=1 # Kirchliches Amtsblatt für das Bistum Essen (AB-PPN, IKR)
1784545694=1 # Amtsblatt des Erzbistums Köln (AB-PPN, IKR)
166765988=1 # Amtsblatt des Erzbistums Köln (AB-PPN, IKR)
175696663X=1 # Kirchliches Amtsblatt für die Diözese Münster (AB-PPN, IKR)
1789065429=1 # Kirchliches Amtsblatt für die Erzdiözese Paderborn (AB-PPN, IKR)
167405527=1 # Kirchliches Amtsblatt für die Erzdiözese Paderborn (AB-PPN, IKR)
1789070287=1 # Amtsblatt fuer die Dioezese Regensburg (AB-PPN, IKR)
1041373554=1 # Kirchliches Amtsblatt für die Diözese Rottenburg-Stuttgart (AB-PPN, IKR)
683497839=1 # Amtsblatt des Bistums Magdeburg (AB-PPN, IKR)
736118896=1 # Kirchliches Amtsblatt für die Diözese Osnabrück (AB-PPN, IKR)
735685517=1 # Kirchlicher Anzeiger für das Bistum Hildesheim (AB-PPN, IKR)
1751188191=1 # Amtsblatt : Bistum Passau (AB-PPN, IKR)
775920312=1 # Pastoralblatt : Amtsblatt des Bistums Eichstätt (AB-PPN, IKR)
867167459=1 # Oberhirtliches Verordnungsblatt : Amtsblatt für das Bistum Speyer (AB-PPN, IKR)
165667435=1 # Kirchliches Amtsblatt : Ausgabe des Bischöflichen Amtes Erfurt-Meiningen (AB-PPN, IKR)
167359355=1 # Kirchliches Amtsblatt für die Diözese Mainz (AB-PPN, IKR)
167405233=1 # Kirchlicher Anzeiger für die Diözese Aachen (AB-PPN, IKR)
1831528126=1 # Kirchlicher Anzeiger für die Diözese Aachen (AB-PPN, IKR)
167737457=1 # Verordnungsblatt des Katholischen Militärbischofs für die Deutsche Bundeswehr (AB-PPN, IKR)
613736710=1 # Würzburger Diözesanblatt (AB-PPN, IKR)
328819700=1 # Amtsblatt für das Erzbistum Bamberg (AB-PPN, IKR)
1677381620=1 # Amtsblatt des Erzbistums Berlin (AB-PPN, IKR)
1779867972=1 # Kirchliches Amtsblatt für das Bistum Trier (AB-PPN, IKR)
182405141=1 # Amtsblatt : Bistum Görlitz (AB-PPN, IKR)
735685517=1 # Kirchlicher Anzeiger für das Bistum Hildesheim (AB-PPN, IKR)
167358952=1 # Amtsblatt fuer die Dioezese Augsburg (AB-PPN, IKR)
167361929=1 # Amtsblatt für das Erzbistum München und Freising (AB-PPN, IKR)
1522-5658=0$a1 # The journal of religion & society
15225658=0$a1 # The journal of religion & society
0037-8887=1 # Archivum historicum Societatis Iesu
0076-1508=1 # Lusitania sacra : revista do Centro de Estudos de Historia Religiosa
2693-2148=0$a1 # Occasional papers on religion in Eastern Europe
26932148=0$a1 # Occasional papers on religion in Eastern Europe
2520-4696=0 # European journal of philosophy, culture and religion
25204696=0 # European journal of philosophy, culture and religion
#Zeder-Export-Daten (05-22)
1015-8758=1 # Acta theologica (6)
1015-8757=1 # Acta theologica (6)
1026-2946=1 # Africa journal of evangelical theology : AJET (11)
1126-8557=1 # Alpha omega : rivista di filosofia e teologia dellʾAteneo Pontificio Regina Apostolorum (17)
0745-3698=1 # American Baptist quarterly (22)
1051-3558=1 # American catholic philosophical quarterly : ACPQ_ journal of the American Catholic Philosophical (23)
0002-7790=1 # American catholic studies : journal of the American Catholic Historical Society (24)
0194-3448=1 # American journal of theology and philosophy (25)
0392-2855=1 # Analecta Augustiniana : divo parenti Augustino dicata (32)
0003-2468=1 # Analecta Bollandiana : revue critique d'hagiographie _ a journal of critical hagiography (33)
0209-0864=1 # Analecta Cracoviensia : studia philosophica theologica historica iuridica (37)
0569-9789=1 # Analecta calasanctiana (43)
0003-2980=1 # Andrews University Seminary studies : AUSS_ the journal of the Seventh-Day Adventist Theological (46)
0003-3286=1 # Anglican theological review : ATR (51)
0394-8226=1 # Annales theologici (53)
1120-4001=1 # Annali di storia dell'esegesi : rivista semestrale (54)
0003-5157=1 # Annuarium historiae conciliorum : internationale Zeitschrift für Konziliengeschichtsforschung (60)
0074-0160=1 # Anthologica annua (63)
0003-6064=1 # Antonianum : periodicum trimestre Pontificiae Universitatis Antonianum de Urbe (65)
1133-0104=1 # Anuario de historia de la Iglesia (66)
1155-3316=1 # Apocrypha : revue internationale des littératures apocryphes (70)
1477-8351=1 # Aramaic studies : AS (74)
0066-6386=1 # Archiv für Liturgiewissenschaft : ALW (79)
0003-9381=1 # Archiv für Reformationsgeschichte : internationale Zeitschrift zur Erforschung der Reformation (80)
1591-2957=1 # Archivio teologico torinese (85)
0211-5255=1 # Archivo Dominicano (87)
0211-2035=1 # Archivo agustiniano : revista de estudios históricos (88)
0210-1629=1 # Archivo Teológico Granadino : organo del Centro de Estudios Postridentinos de la Facultad de Te (90)
0004-0665=1 # Archivum Franciscanum historicum : periodica publ. trimestris cura PP. Coll. D. Bonaventurae (92)
0037-8887=1 # Archivum historicum Societatis Iesu (96)
0217-1244=1 # Asia journal of theology (101)
0118-8534=1 # Asian journal of pentecostal studies (102)
0004-4970=1 # Asprenas (103)
0094-5323=1 # Augustinian studies : publication of Villanova University (107)
0004-8003=1 # Augustiniana : tijdschrift voor de studie van Sint Augustinus en de Augustijnenorde (108)
0004-8011=1 # Augustinianum : periodicum semestre Instituti Patristici ""Augustinianum""" (109)