-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex-alt.html
1275 lines (1153 loc) · 82.5 KB
/
index-alt.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252"><title>FOASAS: Fair Open Access in South Asian Studies</title>
<meta http-equiv="expires" content="0">
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="Cache-Control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="Cache-Control" content="no-cache">
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="South Asian Studies, Indology, Publishers, Publishing, Open Access, Fair Open Access, Manifesto, Initiative">
<meta name="keywords" content="South Asian Studies, Indology, Publishers, Publishing, Open Access, Fair Open Access, Manifesto, Initiative">
<script language="javascript" src="email.js"></script>
<link rel="stylesheet" type="text/css" href="format.css">
<link rel="shortcut icon" href="favicon.png">
<link rel="stylesheet" media="screen" href="https://fontlibrary.org//face/montserrat" type="text/css"/>
</head>
<body>
<div class="centered" align="center" alt="FOASAS logo"><img width="70vw" src="foasaslogo.png">
<h1>The Initiative for<br> Fair Open Access Publishing<br>in South Asian Studies
</h1>
<a href="#manifest">Manifesto</a> •
<a href="#supporters">Supporters</a> •
<a href="#journals">Publishers & Journals</a> •
<a href="#publications">Publications</a> •
<a href="contact.html">Contact</a> <!-- •
<a href="#links">Links</a> -->
<div class="mainframe" id="introduction">
<div class="abstract" id="manifesto-abstract">Profiteering and restricted access have led to a crisis in academic publishing, and transitioning to Fair Open Access is the best way out of this crisis. Since 2020, more than 140 scholars from the field of South Asian Studies have expressed their support for the Fair Open Access movement.
</div>
<b>FAIR</b> means that the opportunity to publish research results should only depend on the scientific quality – and not on the financial or institutional situation of the author. <br>
<br>
<b>OPEN ACCESS</b> means that academic publications are made available to all readers free of charge.<br>
<br>
<b>SOUTH ASIAN STUDIES</b> encompasses all disciplines in the humanities that deal with the cultures, languages and histories of the southern region of Asia (comprising the modern states of Afghanistan, Bangladesh, Bhutan, India, Maldives, Nepal, Pakistan and Sri Lanka). South Asian Studies may also include research that deals with topics outside this region, provided they are historically or culturally linked to South Asia (e.g., yoga and Buddhism).<br>
<br>
The aims of the FOASAS <b>INITIATIVE</b> are <br>
<ul>
<li>to raise awareness about the crisis in academic publishing and to offer solutions for this crisis (see the <a href="#manifest">2020 Manifesto</a>)</li>
<li>to promote FOA by maintaining lists of suitable <a href="#journals">publishers and journals</a></li>
<li>to increase the visibility of FOA publications by maintaing a list of FOA <a href="#publications">papers and books</a></li>
</ul>
The Initiative was founded in 2020 by <a href="https://orcid.org/0000-0001-5424-7824">Vitus Angermeier</a> and <a href="https://orcid.org/0000-0002-8505-6112">Dominik A. Haas</a>.
We are convinced that FOA is particularly important in a field that involves authors and readers from very diverse financial and institutional backgrounds,
and that transforming academic publishing in this field is vital for it to thrive and flourish.<br>
<br>
The Initiative is privately funded and run by scholars. It has no other goal than to improve academic publishing for everyone involved: authors, editors, readers and users.
</div>
<h2>The 2020 Manifesto for <br>
Fair Open Access Publishing <br>
in South Asian Studies
</h2>
</div>
<div class="mainframe" id="manifesto">
<div class="abstract" id="manifesto-abstract">Profiteering and restricted access have led to a crisis in academic publishing. The Fair Open Access movement is best promoted by mobilizing individual disciplines. With this manifesto, we, an open group of scholars of classical and modern South Asian Studies, declare our support for Fair Open Access publishing.</div>
<p id="p1"><b>§1  As is well known, the impact of publications is very often contingent on factors independent of the quality of the research or the competence of the authors.</b> This includes that the research is published in a renowned journal (or other publication medium), by a renowned editor, or – and this has become a major problem – by a prestigious publishing house.</p>
<p id="p2"><b>§2  Most of the prestigious publication media are nowadays controlled by a small number of profiteering international publishers.</b> These companies often sell their products at unjustifiably high prices. Much of the editorial work, on the other hand, is outsourced to researchers (or their co-workers, assistants, employees, secretaries etc.). Because they depend on the prestige capitalized on by the publishers, they generally do this without payment. This situation has led to a real crisis in academic publishing. </p>
<p id="p3"><b>§3  The Open Access (OA) movement is a reaction to this development:</b> the advance of digitization has made it easy to make the results of research freely available on the internet. OA publishing offers free access to research, regardless of an individual's financial means or affiliation with a subscribing institution. In the OA model, the individual reader does not pay (except, of course, in the case of printed works). Instead, the publication costs are borne by universities, libraries, scholarly societies, professional associations or other scholarly institutions. While in the wake of this development a number of institutions have founded in-house publishing projects, some commercial publishers have started to offer OA as well. </p>
<p id="p4"><b>§4  In order to compensate for the revenue losses resulting from the free availability of OA publications, however, some profiteering publishers have begun to calculate special fees</b> – imposed on the authors or their institutions. Most often, these fees are unjustifiably high and overcompensate for the production costs. As a growing number of academic institutions nowadays demand that the publications of their employees be OA, they are willing to pay these fees. They even regularly schedule a special budget to finance the publishers. </p>
<p id="p5"><b>§5  Ultimately, however, it is the tax payers who have to pay,</b> often several times: funding for research and researchers, library budgets for subscription fees, acquisition of overpriced books, processing costs charged by the publishers for OA publications etc. The only reason this system functions is that researchers and their institutions are dependent on the prestige that profiteering publishers have capitalized on for commercial benefit. </p>
<p id="p6"><b>§6  This business model is contrary to the spirit of the sciences and the humanities,</b> whose main task is to discover and to create knowledge and to communicate it to the tax paying public – by publishing their results in the truest sense of the word. It goes without saying that excellent scholars and institutions should work together with first-rate publishers and <i>vice versa</i>. But both excessive profiteering and exploitation through “voluntary” work should come to an end. If researchers and publishers are paid by tax money, then this must be done under fair conditions for all parties. </p>
<p id="p7"><b>§7  We, an open and growing group of concerned scholars, are convinced that Fair Open Access (FOA) publishing is the best way out of this crisis.</b> What FOA shall encompass is subject to open discussion. Most important is, in any case, a “separation of powers”: scientific quality and publishing services must be independent of each other. Building on the definition by the Fair Open Access Alliance (<a href="https://www.fairopenaccess.org">fairopenaccess.org</a>), we suggest the following guiding principles for FOA publishing: </p>
<table style="width:100%">
<col width=5%> <col width=95%>
<tr> <td id="p7.1" valign="top"><b>1.</b></td><td>Publications must be Open Access, either Gold or Green. </td></tr>
<tr> <td id="p7.2" valign="top"><b>2.</b></td><td>Authors must retain the control over their copyright and an explicit Open Access license should be used.</td></tr>
<tr> <td id="p7.3" valign="top"><b>3.</b></td><td>The possibility to publish should not depend on the financial situation of the author or on membership fees.</td></tr>
<tr> <td id="p7.4" valign="top"><b>4.</b></td><td>All costs and fees that arise in connection to the publication process must be transparent, fair, and in proportion to the work carried out.</td></tr>
<tr> <td id="p7.5" valign="top"><b>5.</b></td><td>Publishing houses – whether privately or publicly financed – should only act as service providers and as subcontractors.</td></tr>
<tr> <td id="p7.6" valign="top"><b>6.</b></td><td>The publication medium itself (a journal, book series, encyclopedia, etc.) should be controlled and governed by those who are qualified to evaluate its content. In other words, it should be in the hands of scholars alone.</td></tr>
<tr> <td id="p7.7" valign="top"><b>7.</b></td><td>The “brand” of the publication medium must not be the property of a profit-oriented organization, but, for instance, of a board of scholars, a non-profit association, a library etc. </td></tr>
<tr> <td id="p7.8" valign="top"><b>8.</b></td><td>Effort deserves recognition. The work done by publishers must be duly acknowledged in every publication, in parallel with that of researchers. </td></tr>
<tr> <td id="p7.9" valign="top"><b>9.</b></td><td>All those who contributed to the publication process in any substantial way must be credited. If parts of the production process were carried out by different persons, institutions or companies (paid or unpaid), all of them must be named.</td></tr>
</table>
<p id="p8"><b>§8  Since profiteering publishers will not give up their business model just because we say they should, we have to take action ourselves.</b> Scholars (especially early-career scholars without tenure) need to publish in prestigious journals and books in order to build a CV that will impress hiring committees. Editors, on the other hand, may feel that they could betray the publishers they work with and that they could jeopardize their own position. In this way, many of us are compromised. But if we collectively make the effort to take a step forward, that will make a difference. </p>
<p id="p9"><b>§9  As the FOA Alliance has shown with their initiatives in the fields of linguistics, mathematics and psychology, it is best to promote FOA from within the individual disciplines.</b> In the (relatively speaking) small setting of a single discipline, people know each other and can form networks, spread awareness and join forces in order to implement FOA. When it is possible to assess each other’s work, commercially successful publishers are not needed to guarantee the quality of the research. In a community of trusted peers, it is easier to find and recommend FOA publishers and high-quality publishing media. </p>
<p id="p10"><b>§10  As scholars and researchers, we should therefore take the following measures, whenever the circumstances permit:</b> </p>
<table class="body">
<col width=5%> <col width=95%>
<tr> <td id="p10.1" valign="top"><b>1.</b></td><td>Depending on our personal situation, we should <b>avoid or even boycott profiteering publishers</b> that base their business models on the capitalization of academic prestige (by demanding unjustifiably high Article Processing Charges etc.). </td></tr>
<tr> <td id="p10.2" valign="top"><b>2.</b></td><td>As <b>authors,</b> we should prefer FOA publishers over others when we have a free choice between several options. If we have no choice, we can at least suggest FOA alternatives. </td></tr>
<tr> <td id="p10.3" valign="top"><b>3.</b></td><td>As <b>editors,</b> we should think about FOA alternatives for our journals and books when we have the opportunity. </td></tr>
<tr> <td id="p10.4" valign="top"><b>4.</b></td><td>As <b>reviewers,</b> we shall continue to provide anonymous reviews of FOA publications without demanding compensation. In contrast, we could consider claiming compensation (financial or other) for reviews requested by non-FOA publishers. </td></tr>
<tr> <td id="p10.5" valign="top"><b>5.</b></td><td>As <b>employers</b> and <b>financiers,</b> when assessing the merits of a potential employee or of a project proposal, we shall begin to particularly value FOA publications (for example, when we have to decide between two otherwise equally qualified applications). </td></tr>
<tr> <td id="p10.6" valign="top"><b>6.</b></td><td>As potential <b>founders</b> of journals, book series or even publishing houses, we should consider realizing our plans according to FOA standards. If possible, we should request the support of one of the many institutions that are committed to implementing the transition to Open Access. </td></tr>
</table>
<div class="centered" id="supporters">
<div class="button"><a alt="PDF of the FOASAS manifesto" title="PDF of the FOASAS manifesto" href="FOASAS_Manifesto_2020.pdf">PDF</a></div>
</div>
<div class="centered" align="center" id="supporters">
<h2>Supporters
</h2>
<a href="https://www.fairopenaccess.org/" target="_blank" alt="Fair Open Access Alliance" title="Fair Open Access Alliance"><img width="120vw" src="foaalogo.png"></a> 
<a href="https://journals.library.ualberta.ca/hssa/" target="_blank" alt="HSSA" title="HSSA"><img width="280vw" src="hssa-logo.png"></a> 
<a href="https://nesarjournal.org/" target="_blank" alt="NESAR" title="NESAR"><img width="210vw" src="NESAR_logo-wordmark.avif"></a> 
<p>
If you are a scholar of South Asian Studies (classical or modern, postgraduate or higher) and if you want to support the initiative, please send your name (and affiliation) to</p>
<p style="line-height:0.5em;"><script>mail2("contact","foasas",1,"","contact|at|foasas.org")</script></p>
<p>We'll be happy to add your name to our list of supporters!
</p>
</div>
<div class="abstract" id="supporters-declaration">With the <b>2020 Manifesto for Fair Open Access Publishing in South Asian Studies,</b> we, the undersigned scholars, declare our support for Fair Open Access publishing in classical and modern South Asian Studies. We are aware that this project will take time and that the old structures cannot be replaced today, or by tomorrow. We firmly believe, however, that the transition to this form of publishing is the best way forward in the long-term and that the time and effort needed in order to realize it are worth it. </div>
<b>Mark Allon</b>, University of Sydney<br>
<b>Vitus Angermeier</b>, University of Vienna<br>
<b>Raj Balkaran</b>, Oxford Centre for Hindu Studies <br>
<b>Elena Bashir</b>, University of Chicago<br>
<b>Richard Batchelor</b>, University of Florida<br>
<b>Stefan Baums</b>, Ludwig-Maximilians-Universität München<br>
<b>Ramkrishna Bhattacharya</b>, Pavlov Institute<br>
<b>Amelia Bonea</b>, University of Heidelberg<br>
<b>Joel Bordeaux</b>, Stony Brook University<br>
<b>Adam Bowles</b>, The University of Queensland<br>
<b>Simon Brodbeck</b>, Cardiff University<br>
<b>Johannes Bronkhorst</b>, University of Lausanne<br>
<b>Giulia Buriola</b>, Università "Sapienza" (Rome) <br>
<b>Albion M. Butters</b>, University of Turku<br>
<b>Tim Cahill</b>, Loyola University New Orleans<br>
<b>George Cardona</b>, University of Pennsylvania<br>
<b>Rocco Cestola</b>, Leiden University<br>
<b>Debabrata Chakrabarti </b>, Independent Scholar<br>
<b>Alaka Chudal</b>, University of Vienna<br>
<b>Claudio Cicuzza</b>, Webster University Thailand<br>
<b>Giovanni Ciotti</b>, University of Hamburg<br>
<b>Bradley S. Clough</b>, Penn State University<br>
<b>Lucy May Constantini</b>, The Open University<br>
<b>Patrick T. Cummins</b>, Cornell University<br>
<b>Daniele Cuneo</b>, Sorbonne Nouvelle<br>
<b>Marzenna Czerniak-Drożdżowicz</b>, Jagiellonian University Cracow<br>
<b>Dmytro Danylov</b>, Institute of philosophy of H.S. Skovoroda NAS<br>
<b>Hugo David</b>, École française d'Extrême-Orient<br>
<b>Kristen De Joseph</b>, Leiden University<br>
<b>Elizabeth De Michelis</b>, Independent Scholar<br>
<b>Jean-Philippe Dedieu</b>, New York University<br>
<b>Lynna Dhanani</b>, University of California Davis<br>
<b>Diana Dimitrova</b>, Université de Montréal <br>
<b>Gordan Djurdjevic</b>, Independent Scholar<br>
<b>Maya Dodd</b>, Flame University, Pune<br>
<b>Sanne Dokter-Mersch</b>, Leiden University<br>
<b>Svevo D'Onofrio</b>, University of Bologna<br>
<b>Mercy Dutta</b>, Jawaharlal Nehru University<br>
<b>Harry Falk</b>, Freie Universität Berlin<br>
<b>Marco Ferrante</b>, University of Oxford<br>
<b>Christian Ferstl</b>, University of Vienna<br>
<b>Peter Flügel</b>, SOAS, University of London<br>
<b>Camillo A. Formigatti</b>, University of Oxford<br>
<b>Emmanuel Francis</b>, CNRS<br>
<b>Eli Franco</b>, Leipzig University<br>
<b>Oliver Philipp Frey</b>, University of Vienna<br>
<b>Martin Gaenszle</b>, University of Vienna<br>
<b>Martin Gansten</b>, Lund University<br>
<b>Ge Ge</b>, University of Vienna<br>
<b>Finnian M. M. Gerety</b>, Brown University<br>
<b>Luis González-Reimann</b>, University of California, Berkeley<br>
<b>Marie-Hélène Gorisse</b>, University of Birmingham<br>
<b>Alastair Gornall</b>, Singapore University of Technology and Design<br>
<b>Rebecca Ruth Gould</b>, University of Birmingham<br>
<b>Alessandro Graheli</b>, University of Vienna / Austrian Academy of Sciences<br>
<b>Laxshmi Greaves</b>, Cardiff University<br>
<b>Cansu Gurkaya</b>, Ecole des Hautes Etudes en Sciences Sociales<br>
<b>John Guy</b>, Metropolitan Museum of Art, New York<br>
<b>Dominik A. Haas</b>, University of Vienna<br>
<b>James Hartzell</b>, University of Trento<br>
<b>James Hegarty</b>, Cardiff University<br>
<b>Ann Heirman</b>, Ghent University<br>
<b>Kathrin Holz</b>, Universität Würzburg<br>
<b>Ute Hüsken</b>, Heidelberg University<br>
<b>Dev Kumar Jhanjh</b>, Jawaharlal Nehru University<br>
<b>Joanna Jurewicz</b>, University of Warsaw<br>
<b>Durga Kale</b>, University of Calgary<br>
<b>Katarina Katavić</b>, University of Zagreb<br>
<b>Mrinal Kaul</b>, Indian Institute of Technology Bombay<br>
<b>Birgit Kellner</b>, Austrian Academy of Sciences<br>
<b>Jon Keune</b>, Michigan State University<br>
<b>Ravi Khangai</b>, Nagpur University<br>
<b>Thomas Kintaert</b>, University of Vienna<br>
<b>Csaba Kiss</b>, University of Naples “L’Orientale”<br>
<b>Sibylle Koch</b>, University of Oxford<br>
<b>Magdalena Kraler</b>, University of Vienna<br>
<b>Aaditya Kulkarni</b>, University of British Columbia<br>
<b>Lars Peter Laamann</b>, SOAS, University of London<br>
<b>Borayin Larios</b>, University of Vienna<br>
<b>Corinne Lefèvre </b>, CNRS<br>
<b>Lauren Leve</b>, University of North Carolina at Chapel Hill<br>
<b>Corinna Lhoir</b>, University of Hamburg<br>
<b>Channa Li</b>, Austrian Academy of Sciences<br>
<b>Chiara Livio</b>, Sapienza University of Rome<br>
<b>Carola Erika Lorea</b>, National University of Singapore<br>
<b>Timothy Lubin</b>, Washington and Lee University<br>
<b>Christian Luczanits</b>, SOAS, University of London<br>
<b>Viktoria Lysenko</b>, Russian State University for the Humanities<br>
<b>Philipp Maas</b>, Leipzig University<br>
<b>James Mallinson</b>, SOAS, University of London<br>
<b>Patrick McAllister</b>, Austrian Academy of Sciences<br>
<b>Ian McCrabb</b>, University of Sydney<br>
<b>Werner Menski</b>, SOAS, University of London<br>
<b>Axel Michaels</b>, Heidelberg University<br>
<b>Marta Monkiewicz</b>, University of Wrocław<br>
<b>Elena Mucciarelli</b>, Hebrew University of Jerusalem<br>
<b>Valters Negribs</b>, University of Oxford<br>
<b>Lance Nelson</b>, University of San Diego<br>
<b>Suzanne Newcombe</b>, The Open University<br>
<b>Andreas Niehaus</b>, Ghent University<br>
<b>Per-Johan Norelius</b>, Uppsala University<br>
<b>Andrew Ollett</b>, University of Chicago<br>
<b>Asko Parpola</b>, University of Helsinki<br>
<b>Peter Pasedach</b>, Hamburg University / Leiden University<br>
<b>Heidi Pauwels</b>, University of Washington, Seattle<br>
<b>Cristina Pecchia</b>, Austrian Academy of Sciences<br>
<b>Ryan Perkins</b>, Stanford University<br>
<b>Andrea Marion Pinkney</b>, McGill University<br>
<b>Catherine Prueitt</b>, University of British Columbia<br>
<b>Neshat Quasier</b>, Centre de Sciences Humaines<br>
<b>Gautham Reddy</b>, Emory University<br>
<b>Nicolas Revire</b>, Thammasat University Bangkok<br>
<b>Madhusudan Rimal</b>, University of Alberta<br>
<b>Jana S. Rošker</b>, University of Ljubljana<br>
<b>Serena Saccone</b>, Austrian Academy of Sciences<br>
<b>Péter Sági</b>, ELTE University, Budapest<br>
<b>Adheesh Sathaye</b>, University of British Columbia<br>
<b>Patricia Sauthoff</b>, University of Alberta<br>
<b>Anna Scarabel</b>, Heidelberg University<br>
<b>Jacob Schmidt-Madsen</b>, University of Copenhagen<br>
<b>Marine Schoettel</b>, École Pratique des Hautes Études <br>
<b>Anna Lise Seastrand</b>, University of Minnesota<br>
<b>Brigitte Sebastia</b>, French Institute of Pondicherry<br>
<b>Sven Sellmer</b>, Adam Mickiewicz University, Poznań<br>
<b>Sivaram Sivasubramanian</b>, Jain (deemed-to-be-university)<br>
<b>Michael Slouber</b>, Western Washington University <br>
<b>Caley Charles Smith</b>, Young Harris College <br>
<b>Frederick M. Smith</b>, University of Iowa<br>
<b>Barbora Sojkova</b>, University of Oxford<br>
<b>Jayandra Soni</b>, University Innsbruck<br>
<b>Carmen Spiers</b>, French Institute of Pondicherry<br>
<b>Sylvia Stapelfeldt</b>, University of Vienna<br>
<b>Ernst Steinkellner</b>, University of Vienna / Austrian Academy of Sciences<br>
<b>Ingo Strauch</b>, Université de Lausanne<br>
<b>Raik Strunz</b>, Martin Luther University of Halle-Wittenberg<br>
<b>Will Sweetman</b>, University of Otago<br>
<b>Marleen Thaler</b>, University of Vienna<br>
<b>Raffaele Torella</b>, Sapienza University of Rome<br>
<b>Herman Tull</b>, Lafayette College<br>
<b>Aleksandar Uskokov</b>, Yale University<br>
<b>Victor A. van Bijlert</b>, Universiteit Amsterdam<br>
<b>Markus Viehbeck</b>, University of Vienna<br>
<b>Amandine Wattelier-Bricout</b>, Université Sorbonne Nouvelle<br>
<b>Verena Widorn</b>, University of Vienna<br>
<b>Nicholas Witkowski</b>, Nanyang Technological University, Singapore<br>
<b>Michael Witzel</b>, Harvard University<br>
<b>Lidia Wojtczak</b>, SOAS, University of London<br>
<b>Dominik Wujastyk</b>, University of Alberta<br>
<b>Fernando Wulff Alonso</b>, Universidad de Málaga<br>
<b>Dominic Zoehrer</b>, University of Vienna<br>
<div class="centered" id="journals">
<h2>Publishers & Journals
</h1>
<p>The following publishers and journals meet many or all FOA criteria (see <a href="index.html#p7">§7</a> of the <a href="index.html#manifesto">FOASAS Manifesto</a>).</p>
<br>
<br>
<h3>Publishers
</h3>
</div>
<div class="centered" id="publishers"><b>last update</b>: 10/2022</div> <br><br>
<div class="entry">
<button type="entryhead" class="collapsible">
<h4>Australian National University Press</h4>
</button>
<div class="content">
<table style="width:100%">
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>services</b>  </td><td>"ANU Press is Australia’s first open-access university press. Our authors publish peer-reviewed research on a broad range of topics including Asia and Pacific studies, Australian politics, humanities, arts, Indigenous studies and science."</td></tr>
<tr><td class="leftcol"><b>relevant journals</b>  </td><td><a href=" "></a></td></tr>
<tr><td class="leftcol"><b>relevant <br>book series</b>  </td><td><a href=" "></a></td></tr>
<tr><td class="leftcol"><b>country</b>  </td><td>Australia</td></tr>
<tr><td class="leftcol"><b>languages</b>  </td><td>English</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>URL</b>  </td><td><a href="https://press.anu.edu.au">press.anu.edu.au</a></td></tr>
<tr><td class="leftcol"><b>last check</b>  </td><td>07/2021</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
</table>
</div></div>
<div class="entry">
<button type="entryhead" class="collapsible" id="hamup">
<h4>Hamburg University Press</h4>
</button>
<div class="content">
<table style="width:100%">
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>services</b>  </td><td>"Hamburg University Press veröffentlicht ausgewählte Werke von Wissen­schaftlerinnen und Wissen­schaftlern der Universität Hamburg sowie von weiteren wissen­schaftlichen und wissen­schafts­nahen Einrichtungen. Der Verlag unterstützt Wissen­schaftlerinnen und Wissen­schaftler so beim zeitgemäßen Publizieren zu wissen­schafts­freundlichen Bedingungen.<br>
<br>
Die Publikationen werden jeweils unter einer Creative-Commons-Lizenz veröffentlicht. Diese Lizenz uterstützt die Verbreitung der Werke und fördert ihre Nachnutzung. Auf diese Weise werde Open Access und Open Science unterstützt.<br>
<br>
Alle Werke werden in der Regel parallel als hochwertige Bücher im Print-on-Demand-Verfahren veröffentlicht. Die gedruckten Bücher sind über den Buchhandel und die Verlagswebseite bestellbar."</td></tr>
<tr><td class="leftcol"><b>relevant journals</b>  </td><td></td></tr>
<tr><td class="leftcol"><b>relevant <br>book series</b>  </td><td><a href="https://blogs.sub.uni-hamburg.de/hup/reihen/hamburg-buddhist-studies/"></a>Hamburg Buddhist Studies (postprint OA publication)</td></tr>
<tr><td class="leftcol"><b>country</b>  </td><td>Germany</td></tr>
<tr><td class="leftcol"><b>languages</b>  </td><td>German, English</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>URL</b>  </td><td><a href="https://blogs.sub.uni-hamburg.de/hup/">blogs.sub.uni-hamburg.de/hup</a></td></tr>
<tr><td class="leftcol"><b>last check</b>  </td><td>07/2021</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
</table>
</div></div>
<div class="entry">
<button type="entryhead" class="collapsible" id="crossasia">
<h4>Heidelberg Asian Studies Publishing – HASP</h4>
</button>
<div class="content">
<table style="width:100%">
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>services</b>  </td><td>Formerly <i>CrossAsia-ePublishing</i>. "HASP supports Open Access as a publishing model for the dissemination and advancement of knowledge and learning. We offer scholars in Asian Studies across the world the opportunity to publish their research results electronically, promptly and free of charge, thus increasing the visibility and impact of their publications. We publish both scholarly monographs, edited volumes and journals according to both the gold OA model, i.e. books are available in OA immediately, and the green OA model, i.e. the OA additional publication of a printed work (self-archiving)."</td></tr>
<tr><td class="leftcol"><b>relevant journals</b>  </td><td><a href="#dastavezi">Dastavezi: The Audio-Visual South Asia</a><br>
<a href="#EJVS">Electronic Journal of Vedic Studies</a><br>
<a href="#HPSACP">Heidelberg Papers in South Asian and Comparative Politics</a><br>
<a href="#IZS">Interdisziplinäre Zeitschrift für Südasienforschung – IZAF</a></td></tr>
<tr><td class="leftcol"><b>relevant <br>book series</b>  </td><td><a href="https://hasp.ub.uni-heidelberg.de/series/info/miakp">Monographs on Indian Archaeology, Art and Philology</a><br>
<a href="https://hasp.ub.uni-heidelberg.de/series/info/macs">Media and Cultural Studies</a></td></tr>
<tr><td class="leftcol"><b>country</b>  </td><td>Germany</td></tr>
<tr><td class="leftcol"><b>languages</b>  </td><td>English, German</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>URL</b>  </td><td><a href="https://hasp.ub.uni-heidelberg.de/">hasp.ub.uni-heidelberg.de</a></td></tr>
<tr><td class="leftcol"><b>last check</b>  </td><td>05/2022</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
</table>
</div></div>
<div class="entry">
<button type="entryhead" class="collapsible">
<h4>Heidelberg University Publishing</h4>
</button>
<div class="content">
<table style="width:100%">
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>services</b>  </td><td>"The mission of Heidelberg University Publishing is to provide open access to outstanding academic publications. We see the opportunities afforded by digital publishing as a way to advance the visibility of research output beyond the confines of academic disciplines. For us, this means that we publish open access, follow a consistent e-strategy, use innovative digital publication formats, and ensure quality with double-blind peer review. In addition to electronic formats, we offer high-quality printed versions of all our titles. Our decision to accept a submission does not depend on its provenance, but on its quality.<br>
<br>
In keeping with our role as a Comprehensive University, we facilitate forms of interdisciplinary exchange that grow from the strengths of our academic disciplines. Our portfolio includes primarily monographs, edited volumes/proceedings, and textbooks. We also use innovative technology to publish scholarly illustrated books and multimedia objects. In all these endeavors, we collaborate with various national and international partners of the university."</td></tr>
<tr><td class="leftcol"><b>relevant journals</b>  </td><td><a href=" "></a></td></tr>
<tr><td class="leftcol"><b>relevant <br>book series</b>  </td><td><a href="https://heiup.uni-heidelberg.de/series/info/hadw_dn">Documenta Nepalica</a></td></tr>
<tr><td class="leftcol"><b>country</b>  </td><td>Germany</td></tr>
<tr><td class="leftcol"><b>languages</b>  </td><td>English, German</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>URL</b>  </td><td><a href="https://heiup.uni-heidelberg.de/">heiup.uni-heidelberg.de</a></td></tr>
<tr><td class="leftcol"><b>last check</b>  </td><td>07/2021</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
</table>
</div></div>
<div class="entry">
<button type="entryhead" class="collapsible" id="openbook">
<h4>Open Book Publishers</h4>
</button>
<div class="content">
<table style="width:100%">
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>services</b>  </td><td>"OBP provides permanent and free access to our books for readers with no Open Access fees (also known as Book Processing Charges or BPCs) for the authors, and the majority of our titles are published under the most flexible reuse standard – the CC BY license."</td></tr>
<tr><td class="leftcol"><b>relevant journals</b>  </td><td></td></tr>
<tr><td class="leftcol"><b>relevant <br>book series</b>  </td><td><a href=" "></a></td></tr>
<tr><td class="leftcol"><b>country</b>  </td><td>UK</td></tr>
<tr><td class="leftcol"><b>languages</b>  </td><td>English</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>URL</b>  </td><td><a href="https://www.openbookpublishers.com/">openbookpublishers.com</a></td></tr>
<tr><td class="leftcol"><b>last check</b>  </td><td>06/2023</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
</table>
</div></div>
<div class="entry">
<button type="entryhead" class="collapsible">
<h4>Ubiquity Press</h4>
</button>
<div class="content">
<table style="width:100%">
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>services</b>  </td><td>"Ubiquity Press is an open access publisher of peer-reviewed academic journals, books and data. We operate a highly cost-efficient model that makes quality open access publishing affordable for everyone."</td></tr>
<tr><td class="leftcol"><b>relevant journals</b>  </td><td><a href="#AncientAsia">Ancient Asia</a></td></tr>
<tr><td class="leftcol"><b>relevant <br>book series</b>  </td><td><a ""></a></td></tr>
<tr><td class="leftcol"><b>country</b>  </td><td>UK</td></tr>
<tr><td class="leftcol"><b>languages</b>  </td><td>English</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>URL</b>  </td><td><a href="https://www.ubiquitypress.com/">ubiquitypress.com</a></td></tr>
<tr><td class="leftcol"><b>last check</b>  </td><td>06/2023</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
</table>
</div></div>
<div class="entry">
<button type="entryhead" class="collapsible">
<h4>UCL Press</h4>
</button>
<div class="content">
<table style="width:100%">
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>services</b>  </td><td>"UCL Press combines the benefits of traditional scholarly publishing with open access dissemination to make books free to download in digital form. We welcome proposals for monographs, short monographs, edited volumes, and textbooks across all major disciplines in the Arts and Humanities, Social Sciences and Sciences."</td></tr>
<tr><td class="leftcol"><b>relevant journals</b>  </td><td>-</td></tr>
<tr><td class="leftcol"><b>relevant <br>book series</b>  </td><td><a href="https://www.uclpress.co.uk/collections/series-economic-exposures-in-asia">Economic Exposures in Asia (ed.: Rebecca M. Empson)</a></td></tr>
<tr><td class="leftcol"><b>country</b>  </td><td>UK</td></tr>
<tr><td class="leftcol"><b>languages</b>  </td><td>English</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>URL</b>  </td><td><a href="https://www.uclpress.co.uk/">uclpress.co.uk</a></td></tr>
<tr><td class="leftcol"><b>last check</b>  </td><td>06/2023</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
</table>
</div></div>
<div class="entry">
<button type="entryhead" class="collapsible">
<h4>Unior Press</h4>
</button>
<div class="content">
<table style="width:100%">
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>services</b>  </td><td>
UniorPress is the University Press of the University of Naples "L'Orientale" and aims to produce quality academic editions and disseminate research products in Gold Open Access.</td></tr>
<tr><td class="leftcol"><b>relevant journals</b>  </td><td>-</td></tr>
<tr><td class="leftcol"><b>relevant <br>book series</b>  </td><td>-</td></tr>
<tr><td class="leftcol"><b>country</b>  </td><td>IT</td></tr>
<tr><td class="leftcol"><b>languages</b>  </td><td>Italian, English</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>URL</b>  </td><td><a href="https://www.unior.it/ateneo/8966/1/university-press.html">unior.it/ateneo/8966/1/university-press.html</a></td></tr>
<tr><td class="leftcol"><b>last check</b>  </td><td>02/2023</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
</table>
</div></div>
<br>
<p>The above list is updated on an ongoing basis. If you represent a FOA publisher (see <a href="index.html#p7">§7</a> of the <a href="index.html#manifesto">FOASAS Manifesto</a>) and would like to see your company or institution included in the list, please write to <script>mail2("contact","foasas",1,"","contact|at|foasas.org")</script> and provide the necessary information as shown in the entries above. </p>
<br>
<br>
<div class="centered" id="journals">
<h3>Journals
</h3>
</div>
<div class="centered" id="journals2"><b>last update</b>: 10/2022</div> <br>
<br>
<div class="entry">
<button type="entryhead" class="collapsible">
<h4>Acta Asiatica Varsoviensia</h4>
</button>
<div class="content">
<table style="width:100%">
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>key words</b>  </td><td>asian studies</td></tr>
<tr><td class="leftcol"><b>peer review</b>  </td><td>double-blind double peer review</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>publisher</b>  </td><td>Foundation Cultivate</td>
<tr><td class="leftcol"><b>fee</b>  </td><td>none</td></tr>
<tr><td class="leftcol"><b>copyright</b>  </td><td>author</td></tr>
<tr><td class="leftcol"><b>license</b>  </td><td>CC BY-NC-ND</td></tr>
<tr><td class="leftcol"><b>OA type</b>  </td><td>diamond</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>URL</b>  </td><td><a href="http://aav.iksiopan.pl/index.php/en/">aav.iksiopan.pl/index.php/en/</a></td></tr>
<tr><td class="leftcol"><b>DOAJ</b>  </td><td><a href="https://doaj.org/toc/2449-8653">doaj.org/toc/2449-8653</td></tr>
<tr><td class="leftcol"><b>last check</b>  </td><td>03/2022</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
</table>
</div></div>
<div class="entry">
<button type="entryhead" class="collapsible">
<h4>Acta Linguistica Asiatica</h4>
</button>
<div class="content">
<table style="width:100%">
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>key words</b>  </td><td>linguistics, asian languages, translation studies, language education</td></tr>
<tr><td class="leftcol"><b>peer review</b>  </td><td>yes</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>publisher</b>  </td><td>University of Ljubljana</td></tr>
<tr><td class="leftcol"><b>fee</b>  </td><td>none</td></tr>
<tr><td class="leftcol"><b>copyright</b>  </td><td>author</td></tr>
<tr><td class="leftcol"><b>license</b>  </td><td>CC-BY-SA</td></tr>
<tr><td class="leftcol"><b>OA type</b>  </td><td>diamond</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>URL</b>  </td><td><a href="https://revije.ff.uni-lj.si/ala/about">revije.ff.uni-lj.si/ala/about</a></td></tr>
<tr><td class="leftcol"><b>DOAJ</b>  </td><td><a href="https://doaj.org/toc/2232-3317">doaj.org/toc/2232-3317</a></td></tr>
<tr><td class="leftcol"><b>last check</b>  </td><td>07/2021</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
</table>
</div></div>
<div class="entry">
<button type="entryhead" class="collapsible" id="AncientAsia">
<h4>Ancient Asia</h4>
</button>
<div class="content">
<table style="width:100%">
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>key words</b>  </td><td>archaeology, history, anthropology, art, architecture, numismatics</td></tr>
<tr><td class="leftcol"><b>peer review</b>  </td><td>double blind double peer-review</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>publisher</b>  </td><td>Ubiquity Press</td></tr>
<tr><td class="leftcol"><b>fee</b>  </td><td>£300.00; "Ancient Asia will waiver all fees from low and lower-middle income economies as defined by the World Bank"</td></tr>
<tr><td class="leftcol"><b>copyright</b>  </td><td>author</td></tr>
<tr><td class="leftcol"><b>license</b>  </td><td>CC-BY</td></tr>
<tr><td class="leftcol"><b>OA type</b>  </td><td>gold</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>URL</b>  </td><td><a href="https://www.ancient-asia-journal.com/">ancient-asia-journal.com</a></td></tr>
<tr><td class="leftcol"><b>DOAJ</b>  </td><td><a href="https://doaj.org/toc/2042-5937">doaj.org/toc/2042-5937</a></td></tr>
<tr><td class="leftcol"><b>last check</b>  </td><td>07/2021</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
</table>
</div></div>
<div class="entry">
<button type="entryhead" class="collapsible">
<h4>Asian Ethnology</h4>
</button>
<div class="content">
<table style="width:100%">
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>key words</b>  </td><td>folklore, ethnology, anthropology, asian studies, diaspora</td></tr>
<tr><td class="leftcol"><b>peer review</b>  </td><td>double blind peer-review</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>publisher</b>  </td><td>Nanzan University in Nagoya / Boston University</td></tr>
<tr><td class="leftcol"><b>fee</b>  </td><td>none</td></tr>
<tr><td class="leftcol"><b>copyright</b>  </td><td>journal (Nanzan University) </td></tr>
<tr><td class="leftcol"><b>license</b>  </td><td>CC-BY-NC</td></tr>
<tr><td class="leftcol"><b>OA type</b>  </td><td>diamond</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>URL</b>  </td><td><a href="https://asianethnology.org/">asianethnology.org</a></td></tr>
<tr><td class="leftcol"><b>DOAJ</b>  </td><td><a href="https://doaj.org/toc/1882-6865">doaj.org/toc/1882-6865</a></td></tr>
<tr><td class="leftcol"><b>last check</b>  </td><td>07/2021</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
</table>
</div></div>
<div class="entry">
<button type="entryhead" class="collapsible">
<h4>Asian Literature and Translation</h4>
</button>
<div class="content">
<table style="width:100%">
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>key words</b>  </td><td> -</td></tr>
<tr><td class="leftcol"><b>peer review</b>  </td><td>double peer-review</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>publisher</b>  </td><td>Cardiff University Press</td></tr>
<tr><td class="leftcol"><b>fee</b>  </td><td>none</td></tr>
<tr><td class="leftcol"><b>copyright</b>  </td><td>author</td></tr>
<tr><td class="leftcol"><b>license</b>  </td><td>CC-BY-NC-ND</td></tr>
<tr><td class="leftcol"><b>OA type</b>  </td><td>diamond</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>URL</b>  </td><td><a href="https://alt.cardiffuniversitypress.org/">alt.cardiffuniversitypress.org</a></td></tr>
<tr><td class="leftcol"><b>DOAJ</b>  </td><td> - </td></tr>
<tr><td class="leftcol"><b>last check</b>  </td><td>07/2021</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
</table>
</div></div>
<div class="entry">
<button type="entryhead" class="collapsible">
<h4>Asian Studies</h4>
</button>
<div class="content">
<table style="width:100%">
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>key words</b>  </td><td>area studies, sinology, japanology, korean studies, indian studies</td></tr>
<tr><td class="leftcol"><b>peer review</b>  </td><td>double blind double peer-review</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>publisher</b>  </td><td>Ljubljana University Press</td></tr>
<tr><td class="leftcol"><b>fee</b>  </td><td>none</td></tr>
<tr><td class="leftcol"><b>copyright</b>  </td><td>author</td></tr>
<tr><td class="leftcol"><b>license</b>  </td><td>CC-BY-SA</td></tr>
<tr><td class="leftcol"><b>OA type</b>  </td><td>diamond</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>URL</b>  </td><td><a href="https://revije.ff.uni-lj.si/as/index">revije.ff.uni-lj.si/as/index</a></td></tr>
<tr><td class="leftcol"><b>DOAJ</b>  </td><td><a href="https://doaj.org/toc/2350-4226">doaj.org/toc/2350-4226</a></td></tr>
<tr><td class="leftcol"><b>last check</b>  </td><td>07/2021</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
</table>
</div></div>
<div class="entry">
<button type="entryhead" class="collapsible">
<h4>Bhasha: Journal of South Asian Linguistics, Philology and Grammatical Traditions</h4>
</button>
<div class="content">
<table style="width:100%">
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>key words</b>  </td><td>-</td></tr>
<tr><td class="leftcol"><b>peer review</b>  </td><td>double blind double peer-review</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>publisher</b>  </td><td>Edizioni Ca’ Foscari, Venice University Press</td></tr>
<tr><td class="leftcol"><b>fee</b>  </td><td>none</td></tr>
<tr><td class="leftcol"><b>copyright</b>  </td><td>not stated</td></tr>
<tr><td class="leftcol"><b>license</b>  </td><td>CC-BY</td></tr>
<tr><td class="leftcol"><b>OA type</b>  </td><td>diamond</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>URL</b>  </td><td><a href="https://edizionicafoscari.unive.it/en/edizioni4/riviste/bhasha/">edizionicafoscari.unive.it/en/edizioni4/riviste/bhasha/</a></td></tr>
<tr><td class="leftcol"><b>DOAJ</b>  </td><td>-</td></tr>
<tr><td class="leftcol"><b>last check</b>  </td><td>10/2022</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
</table>
</div></div>
<div class="entry">
<button type="entryhead" class="collapsible">
<h4>The Copenhagen Journal of Asian Studies</h4>
</button>
<div class="content">
<table style="width:100%">
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>key words</b>  </td><td>-</td></tr>
<tr><td class="leftcol"><b>peer review</b>  </td><td>double blind</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>publisher</b>  </td><td>Library of the Copenhagen Business School</td></tr>
<tr><td class="leftcol"><b>fee</b>  </td><td>none</td></tr>
<tr><td class="leftcol"><b>copyright</b>  </td><td>author/journal</td></tr>
<tr><td class="leftcol"><b>license</b>  </td><td>CC BY</td></tr>
<tr><td class="leftcol"><b>OA type</b>  </td><td>diamond</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>URL</b>  </td><td><a href="https://rauli.cbs.dk/index.php/cjas/copyright">rauli.cbs.dk/index.php/cjas</a></td></tr>
<tr><td class="leftcol"><b>DOAJ</b>  </td><td>-</td></tr>
<tr><td class="leftcol"><b>last check</b>  </td><td>05/2022</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
</table>
</div></div>
<div class="entry">
<button type="entryhead" class="collapsible" id="dastavezi">
<h4>Dastavezi: The Audio-Visual South Asia</h4>
</button>
<div class="content">
<table style="width:100%">
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>key words</b>  </td><td>-</td></tr>
<tr><td class="leftcol"><b>peer review</b>  </td><td>double peer-review</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>publisher</b>  </td><td>Heidelberg Asian Studies Publishing</td></tr>
<tr><td class="leftcol"><b>fee</b>  </td><td>none</td></tr>
<tr><td class="leftcol"><b>copyright</b>  </td><td>not stated</td></tr>
<tr><td class="leftcol"><b>license</b>  </td><td>CC-BY-NC-ND</td></tr>
<tr><td class="leftcol"><b>OA type</b>  </td><td>diamond</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>URL</b>  </td><td><a href="https://hasp.ub.uni-heidelberg.de/journals/dasta/index">hasp.ub.uni-heidelberg.de/journals/dasta/index</a></td></tr>
<tr><td class="leftcol"><b>DOAJ</b>  </td><td>-</td></tr>
<tr><td class="leftcol"><b>last check</b>  </td><td>05/2022</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
</table>
</div></div>
<div class="entry">
<button type="entryhead" class="collapsible" id="eJIM">
<h4>eJournal of Indian Medicine</h4>
</button>
<div class="content">
<table style="width:100%">
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>key words</b>  </td><td> - </td></tr>
<tr><td class="leftcol"><b>peer review</b>  </td><td>"The review process is kept simple and short. […] Individual members of the editorial board may veto a submission because it does not meet expected scholarly standards."</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>publisher</b>  </td><td>University of Groningen Press</td></tr>
<tr><td class="leftcol"><b>fee</b>  </td><td>none</td></tr>
<tr><td class="leftcol"><b>copyright</b>  </td><td>"The copyright of the contributions remains with the author. Every author has the right to republish his/her material that has appeared in eJIM under the provision that the original source name of the online journal and the article is mentioned."</td></tr>
<tr><td class="leftcol"><b>license</b>  </td><td>none</td></tr>
<tr><td class="leftcol"><b>OA type</b>  </td><td>diamond</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>URL</b>  </td><td><a href="https://indianmedicine.nl/">indianmedicine.nl/</a></td></tr>
<tr><td class="leftcol"><b>DOAJ</b>  </td><td> -</td></tr>
<tr><td class="leftcol"><b>last check</b>  </td><td>02/2023</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
</table>
</div></div>
<div class="entry">
<button type="entryhead" class="collapsible" id="EJVS">
<h4>Electronic Journal of Vedic Studies</h4>
</button>
<div class="content">
<table style="width:100%">
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>key words</b>  </td><td> - </td></tr>
<tr><td class="leftcol"><b>peer review</b>  </td><td>"monitored for style and content by the Editor-in-Chief"</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>publisher</b>  </td><td>Heidelberg Asian Studies Publishing</td></tr>
<tr><td class="leftcol"><b>fee</b>  </td><td>none</td></tr>
<tr><td class="leftcol"><b>copyright</b>  </td><td>"There is copyright but with automatic permission to publish anywhere else later on when the author wishes to do so."</td></tr>
<tr><td class="leftcol"><b>license</b>  </td><td>none</td></tr>
<tr><td class="leftcol"><b>OA type</b>  </td><td>diamond</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>URL</b>  </td><td><a href="https://hasp.ub.uni-heidelberg.de/journals/ejvs">hasp.ub.uni-heidelberg.de/journals/ejvs</a></td></tr>
<tr><td class="leftcol"><b>DOAJ</b>  </td><td> -</td></tr>
<tr><td class="leftcol"><b>last check</b>  </td><td>05/2022</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
</table>
</div></div>
<div class="entry">
<button type="entryhead" class="collapsible" id="EBHR">
<h4>European Bulletin of Himalayan Research</h4>
</button>
<div class="content">
<table style="width:100%">
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>key words</b>  </td><td>-</td></tr>
<tr><td class="leftcol"><b>peer review</b>  </td><td>double-blind peer-review</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>publisher</b>  </td><td>Centre d'Études Himalayennes </td></tr>
<tr><td class="leftcol"><b>fee</b>  </td><td>none</td></tr>
<tr><td class="leftcol"><b>copyright</b>  </td><td>author</td></tr>
<tr><td class="leftcol"><b>license</b>  </td><td>CC-BY-NC-ND 4.0</td></tr>
<tr><td class="leftcol"><b>OA type</b>  </td><td>diamond</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>URL</b>  </td><td><a href="https://himalaya.cnrs.fr/spip3/spip.php?article640&lang=en">himalaya.cnrs.fr/spip3/spip.php?article640&lang=en</a><br>
<a href="http://www.digitalhimalaya.com/collections/journals/ebhr/nonjavascript.php">digitalhimalaya.com/collections/journals/ebhr/nonjavascript.php</a>
</td></tr>
<tr><td class="leftcol"><b>DOAJ</b>  </td><td>-</td></tr>
<tr><td class="leftcol"><b>last check</b>  </td><td>07/2021</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
</table>
</div></div>
<div class="entry">
<button type="entryhead" class="collapsible" id="HPSACP">
<h4>Heidelberg Papers in South Asian and Comparative Politics</h4>
</button>
<div class="content">
<table style="width:100%">
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>key words</b>  </td><td> - </td></tr>
<tr><td class="leftcol"><b>peer review</b>  </td><td> -</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>publisher</b>  </td><td>Heidelberg Asian Studies Publishing</td></tr>
<tr><td class="leftcol"><b>fee</b>  </td><td>none</td></tr>
<tr><td class="leftcol"><b>copyright</b>  </td><td>not stated</td></tr>
<tr><td class="leftcol"><b>license</b>  </td><td> -</td></tr>
<tr><td class="leftcol"><b>OA type</b>  </td><td>diamond</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>URL</b>  </td><td><a href="https://hasp.ub.uni-heidelberg.de/journals/hdpapers">hasp.ub.uni-heidelberg.de/journals/hdpapers</a></td></tr>
<tr><td class="leftcol"><b>DOAJ</b>  </td><td> -</td></tr>
<tr><td class="leftcol"><b>last check</b>  </td><td>05/2022</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
</table>
</div></div>
<div class="entry">
<button type="entryhead" class="collapsible">
<h4>HIMALAYA</h4>
</button>
<div class="content">
<table style="width:100%">
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>key words</b>  </td><td>nepal, himalaya, himalayan, tibet, nepal studies</td></tr>
<tr><td class="leftcol"><b>peer review</b>  </td><td>yes</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>publisher</b>  </td><td>Association for Nepal and Himalayan Studies</td></tr>
<tr><td class="leftcol"><b>fee</b>  </td><td>none</td></tr>
<tr><td class="leftcol"><b>copyright</b>  </td><td>not stated</td></tr>
<tr><td class="leftcol"><b>license</b>  </td><td>CC-BY-NC-ND</td></tr>
<tr><td class="leftcol"><b>OA type</b>  </td><td>diamond</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>URL</b>  </td><td><a href="https://himalayajournal.org/#">himalayajournal.org</a></td></tr>
<tr><td class="leftcol"><b>DOAJ</b>  </td><td><a href="https://doaj.org/toc/1935-2212">doaj.org/toc/1935-2212</a></td></tr>
<tr><td class="leftcol"><b>last check</b>  </td><td>07/2021</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
</table>
</div></div>
<div class="entry">
<button type="entryhead" class="collapsible">
<h4>History of Science in South Asia</h4>
</button>
<div class="content">
<table style="width:100%">
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>key words</b>  </td><td>history of science, south asia, india</td></tr>
<tr><td class="leftcol"><b>peer review</b>  </td><td>yes</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>publisher</b>  </td><td>University of Alberta Library</td></tr>
<tr><td class="leftcol"><b>fee</b>  </td><td>none</td></tr>
<tr><td class="leftcol"><b>copyright</b>  </td><td>author</td></tr>
<tr><td class="leftcol"><b>license</b>  </td><td>CC-BY-SA</td></tr>
<tr><td class="leftcol"><b>OA type</b>  </td><td>diamond</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>URL</b>  </td><td><a href="https://journals.library.ualberta.ca/hssa/index.php/hssa">journals.library.ualberta.ca/hssa/index.php/hssa</a></td></tr>
<tr><td class="leftcol"><b>DOAJ</b>  </td><td><a href="https://doaj.org/toc/2369-775X">doaj.org/toc/2369-775X</a></td></tr>
<tr><td class="leftcol"><b>last check</b>  </td><td>07/2021</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
</table>
</div></div>
<div class="entry">
<button type="entryhead" class="collapsible" id="IZS">
<h4>Interdisziplinäre Zeitschrift für Südasienforschung</h4>
</button>
<div class="content">
<table style="width:100%">
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>key words</b>  </td><td> - </td></tr>
<tr><td class="leftcol"><b>peer review</b>  </td><td>double blind double peer-review</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>publisher</b>  </td><td>Heidelberg Asian Studies Publishing</td></tr>
<tr><td class="leftcol"><b>fee</b>  </td><td>none</td></tr>
<tr><td class="leftcol"><b>copyright</b>  </td><td>author</td></tr>
<tr><td class="leftcol"><b>license</b>  </td><td>CC BY-SA 4.0</td></tr>
<tr><td class="leftcol"><b>OA type</b>  </td><td>diamond</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>URL</b>  </td><td><a href="https://hasp.ub.uni-heidelberg.de/journals/izsa">hasp.ub.uni-heidelberg.de/journals/izsa</a></td></tr>
<tr><td class="leftcol"><b>DOAJ</b>  </td><td> -</td></tr>
<tr><td class="leftcol"><b>last check</b>  </td><td>06/2023</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
</table>
</div></div>
<div class="entry">
<button type="entryhead" class="collapsible">
<h4>International Journal of Jaina Studies</h4>
</button>
<div class="content">
<table style="width:100%">
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>key words</b>  </td><td> - </td></tr>
<tr><td class="leftcol"><b>peer review</b>  </td><td>yes</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>publisher</b>  </td><td>SOAS University of London</td></tr>
<tr><td class="leftcol"><b>fee</b>  </td><td>none</td></tr>
<tr><td class="leftcol"><b>copyright</b>  </td><td>editor</td></tr>
<tr><td class="leftcol"><b>license</b>  </td><td>none</td></tr>
<tr><td class="leftcol"><b>OA type</b>  </td><td>diamond</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>URL</b>  </td><td><a href="https://www.soas.ac.uk/ijjs/">soas.ac.uk/ijjs</a></td></tr>
<tr><td class="leftcol"><b>DOAJ</b>  </td><td><a href=""> - </td></tr>
<tr><td class="leftcol"><b>last check</b>  </td><td>06/2023</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
</table>
</div></div>
<div class="entry">
<button type="entryhead" class="collapsible">
<h4>Journal of Gandhāran Buddhist Texts</h4>
</button>
<div class="content">
<table style="width:100%">
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>key words</b>  </td><td>-</td></tr>
<tr><td class="leftcol"><b>peer review</b>  </td><td>yes</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>publisher</b>  </td><td>The University of Sydney</td></tr>
<tr><td class="leftcol"><b>fee</b>  </td><td>none</td></tr>
<tr><td class="leftcol"><b>copyright</b>  </td><td>not stated</td></tr>
<tr><td class="leftcol"><b>license</b>  </td><td>none</td></tr>
<tr><td class="leftcol"><b>OA type</b>  </td><td>diamond</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>URL</b>  </td><td><a href="https://openjournals.library.sydney.edu.au/index.php/JGBT/index">openjournals.library.sydney.edu.au/index.php/JGBT</a></td></tr>
<tr><td class="leftcol"><b>DOAJ</b>  </td><td><a href="">-</a></td></tr>
<tr><td class="leftcol"><b>last check</b>  </td><td>06/2023</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
</table>
</div></div>
<div class="entry" id="JSAL">
<button type="entryhead" class="collapsible">
<h4>Journal of South Asian Linguistics</h4>
</button>
<div class="content">
<table style="width:100%">
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>key words</b>  </td><td>-</td></tr>
<tr><td class="leftcol"><b>peer review</b>  </td><td>not stated</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>publisher</b>  </td><td>CSLI Publications</td></tr>
<tr><td class="leftcol"><b>fee</b>  </td><td>none</td></tr>
<tr><td class="leftcol"><b>copyright</b>  </td><td>open access</td></tr>
<tr><td class="leftcol"><b>license</b>  </td><td>none</td></tr>
<tr><td class="leftcol"><b>OA type</b>  </td><td>diamond</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>URL</b>  </td><td><a href="https://ojs.ub.uni-konstanz.de/jsal/">ojs.ub.uni-konstanz.de/jsal/</a></td></tr>
<tr><td class="leftcol"><b>DOAJ</b>  </td><td><a href="">-</a></td></tr>
<tr><td class="leftcol"><b>last check</b>  </td><td>06/2023</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
</table>
</div></div>
<div class="entry">
<button type="entryhead" class="collapsible">
<h4>Journal of Yoga Studies</h4>
</button>
<div class="content">
<table style="width:100%">
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>key words</b>  </td><td> -</td></tr>
<tr><td class="leftcol"><b>peer review</b>  </td><td>yes</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>publisher</b>  </td><td> -</td>
<tr><td class="leftcol"><b>fee</b>  </td><td>none</td></tr>
<tr><td class="leftcol"><b>copyright</b>  </td><td>not stated</td></tr>
<tr><td class="leftcol"><b>license</b>  </td><td>none</td></tr>
<tr><td class="leftcol"><b>OA type</b>  </td><td>diamond</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>URL</b>  </td><td><a href="https://journalofyogastudies.org/index.php/JoYS/about/contact">journalofyogastudies.org/index.php/JoYS/about/contact</a></td></tr>
<tr><td class="leftcol"><b>DOAJ</b>  </td><td><a href=""> -</td></tr>
<tr><td class="leftcol"><b>last check</b>  </td><td>06/2023</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
</table>
</div></div>
<div class="entry">
<button type="entryhead" class="collapsible">
<h4>KERVAN - International Journal of Afro-Asiatic Studies</h4>
</button>
<div class="content">
<table style="width:100%">
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>key words</b>  </td><td>asian literature, asian history, african literature, african history</td></tr>
<tr><td class="leftcol"><b>peer review</b>  </td><td>double blind double peer-review</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>publisher</b>  </td><td>Università degli Studi di Torino</td></tr>
<tr><td class="leftcol"><b>fee</b>  </td><td>none</td></tr>
<tr><td class="leftcol"><b>copyright</b>  </td><td>author</td></tr>
<tr><td class="leftcol"><b>license</b>  </td><td>CC-BY</td></tr>
<tr><td class="leftcol"><b>OA type</b>  </td><td>diamond</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
<tr><td class="leftcol"><b>URL</b>  </td><td><a href="http://www.ojs.unito.it/index.php/kervan/about">ojs.unito.it/index.php/kervan/about</a></td></tr>
<tr><td class="leftcol"><b>DOAJ</b>  </td><td><a href="https://doaj.org/toc/1825-263X">doaj.org/toc/1825-263X</a></td></tr>
<tr><td class="leftcol"><b>last check</b>  </td><td>06/2023</td></tr>
<tr><td style="padding-bottom:20px"></td><td style="padding-bottom:10px"></td></tr>
</table>
</div></div>
<div class="entry">
<button type="entryhead" class="collapsible">
<h4>Medieval Worlds</h4>
</button>
<div class="content">
<table style="width:100%">