-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1169 lines (748 loc) · 129 KB
/
index.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
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Philipp Mayr-Schlegel</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="cache-control" content="no-cache">
<link href="home.css" rel="stylesheet" type="text/css" />
<link href="home.css" rel="stylesheet" type="text/css" />
</head>
<body>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<table width="100%" border="0">
<tr>
<td width="230" align="left" valign="top"><img src="philippmayr.jpg" width="350" height="279" /></td>
<td width="900" valign="top" class="text"> <p align="left" class="textsmall"><span class="smalltext"><a href="#pub">Publications</a>
| </span><span class="smalltext"><a href="#vort">Talks</a> |</span> <span class="smalltext"><a href="#workshops">Workshops</a> |</span>
<span class="smalltext"><a href="#proj">Projects</a> |
<span class="smalltext"><a href="#editorial">Editorial Boards</a> | mailto: <a href="mailto:[email protected]">Philipp
Mayr-Schlegel</a></span> <span class="smalltext">|</span> <span class="smalltext"><a href="http://twitter.com/Philipp_Mayr">Twitter profile</a></span> <span class="smalltext">|</span> <span class="smalltext"><a href="http://www.linkedin.com/in/philippmayr">LinkedIn profile</a></span></p>
<!-- start CV -->
<!-- <p align="justify"><span class="headline">Dr. Philipp Mayr-Schlegel </span> -->
<h1>Dr. Philipp Mayr-Schlegel </h1>
<a href="CV_Mayr-en-long_public.pdf">Curriculum Vitae</a><br />
<br>
Academic Degree: Dr. phil. <br>
PhD Supervisors: Prof. Dr. Walther Umstätter und Prof. Dr. Jürgen Krause.</p>
<p align="justify">
Philipp Mayr is a team leader (Information & Data Retrieval) at the <a href="http://www.gesis.org">GESIS - Leibniz-Institute for the Social Sciences</a> department Knowledge Technologies for the Social Sciences (KTS). In the winter semester 2020/2021, he administrated the W3 professorship “Scientific Information Analytics” at the University of Göttingen, Institute of Computer Science. He has been a visiting professor for knowledge representation at University of Applied Sciences in Darmstadt, Department of Information Science & Engineering during 2009-2011. Philipp Mayr received his PhD in applied informetrics and information retrieval from the Berlin School of Library and Information Science at Humboldt University Berlin in 2009. To date, he has been awarded substantial research funding (PI, Co-PI) from national and European funding agencies. Philipp Mayr was General Chair of the 41st European Conference on Information Retrieval (<a href="https://ecir2019.org/">ECIR 2019</a>) in April 2019, Programme Chair of the 22nd ACM/IEEE Joint Conference on Digital Libraries (<a href="https://2022.jcdl.org/">JCDL 2022</a>) in June 2022, Programme Chair of the 13th International Conference on Social Informatics (<a href="http://www.dcs.gla.ac.uk/socinfo2022/">SocInfo 2022</a>) in October 2022. He has published in top conferences and prestigious journals in the areas informetrics, information retrieval and digital libraries. His research group “Information and Data Retrieval” is working on methods and techniques of interactive information and dataset retrieval and maintains and further develops information systems for the social sciences.
He is the main organizer of the <a href="https://sites.google.com/view/bir-ws/home">International Workshop on Bibliometric-enhanced Information Retrieval (BIR)</a> and <a href="https://sdproc.org/">Scholarly Document Processing</a> workshop series.<br />
My research interests include: interactive IR, scholarly recommendation systems, non-textual ranking, bibliometric and scientometric methods, applied informetrics, science models in digital libraries, knowledge representation, semantic technologies, user studies, information behavior.
<!-- <p align="justify"><span class="headline">News </span><br />-->
<h2>News </h2>
<li class="text">2025 (July/August): <a href="https://sdproc.org/2025/"> <strong> 5th Workshop on Scholarly Document Processing</strong></a> (SDP 2025) at ACL 2025. </li>
<li class="text">2025 (April): <a href="https://sites.google.com/view/bir-ws/scolia-2025"> <strong> First International Workshop on Scholarly Information Access </strong></a> (SCOLIA 2025) at the 47th European Conference on Information Retrieval. </li>
<p align="justify"> </p></td>
</tr>
</table>
<!--start pubs-->
<table width="100%" border="0">
<tr>
<td width="688" align="left" valign="top"> <h2><a name="pub" id="pub"></a>Publications </h2></p>
<p class="smalltext">in <a href="http://scholar.google.com/citations?hl=en&user=RIB8suEAAAAJ">Google Scholar</a>, <a href="http://orcid.org/0000-0002-6656-1658">ORCID</a>, all publications in one <a href="https://github.com/PhilippMayr/MyPapers/blob/master/MyPapers.bib">bibtex file</a>, to date (January 2, 2025): 105 research contributions, 101 editorial works, 73 other types of publications, 11 datasets.
<a href="Projectfunding.pdf">Overview: third party funded projects</a>.</p>
<ul>
<br>
<strong>Preprints</strong>
<li class="text">Clausse, A., Badalova, F., Cabanac, G., & Mayr, P. (2025). <strong>Unveiling tortured phrases in Humanities and Social Sciences</strong>. <a href="https://doi.org/10.48550/arXiv.2502.04944">Preprint</a></li>
<li class="text">Culbert, J. H., Kenett, Y. N., & Mayr, P. (2025). <strong>Originality in scientific titles and abstracts can predict citation count</strong>. <a href="https://doi.org/10.48550/arXiv.2502.01417">Preprint</a></li>
<li class="text">Haupka, N., Culbert, J. H., Schniedermann, A., Jahn, N., & Mayr, P. (2024). <strong>Analysis of the Publication and Document Types in OpenAlex, Web of Science, Scopus, Pubmed and Semantic Scholar</strong>. <a href="http://arxiv.org/abs/2406.15154">Preprint</a></li>
<li class="text">Culbert, J., Hobert, A., Jahn, N., Haupka, N., Schmidt, M., Donner, P., & Mayr, P. (2024). <strong>Reference Coverage Analysis of OpenAlex compared to Web of Science and Scopus</strong>. <a href="http://arxiv.org/abs/2401.16359">Preprint</a></li>
<li class="text">Tong, X., Smirnova, N., Upadhyaya, S., Yu, R., Culbert, J. H., Sun, C., Otto, W., & Mayr, P. (2024). <strong>Utilizing Large Language Models for Named Entity Recognition in Traditional Chinese Medicine against COVID-19 Literature: Comparative Study</strong>. <a href="https://arxiv.org/abs/2408.13501">Preprint</a></li>
<br>
<strong>2025</strong>
<li class="text">Ningrum, P. K., Mayr, P., Smirnova, N., & Atanassova, I. (2025). <strong>Annotating Scientific Uncertainty: A comprehensive model using linguistic patterns and comparison with existing approaches</strong>. Journal of Informetrics, 19(2). <a href="https://www.sciencedirect.com/science/article/pii/S1751157725000252">PDF</a></li>
<li class="text">Biesenbender, K., Smirnova, N., Mayr, P., & Peters, I. (2025). <strong>The Emergence of Preprints: Comparing Publishing Behaviour in the Global South and the Global North</strong>. Online Information Review, 49(8). <a href="https://doi.org/10.1108/OIR-04-2023-0181">PDF</a></li>
<li class="text">Suryani, M. A., Karmakar, S., Mathiak, B., Mutschke, P., & Mayr, P. (2025). <strong>Hugging Face Model Cards Metadata Dataset (Version 0.2) [Dataset]</strong>. Zenodo. <a href="https://doi.org/10.5281/ZENODO.14801921">Dataset</a></li>
<li class="text">Clausse, A., Badalova, F., Cabanac, G., & Mayr, P. (2025). <strong>Tortured Phrases from the Humanities and Social Sciences — A fingerprints dataset [Dataset]</strong>. Zenodo. <a href="https://doi.org/10.5281/ZENODO.14753785">Dataset</a></li>
<br>
<strong>2024</strong>
<li class="text">Zhang, C., Mayr, P., Lu, W., & Zhang, Y. (2024). <strong>An editorial note on extraction and evaluation of knowledge entities from scientific documents</strong>. Scientometrics, 129(11), 7169–7174. <a href="https://doi.org/10.1007/s11192-024-05166-1">PDF</a></li>
<li class="text">Smirnova, N., & Mayr, P. (2024). <strong>Embedding Models for Supervised Automatic Extraction and Classification of Named Entities in Scientific Acknowledgements</strong>. Scientometrics, 129(11), 7261–7285. <a href="https://doi.org/10.1007/s11192-023-04806-2">PDF</a></li>
<li class="text">Zhang, C., Zhang, Y., Mayr, P., Lu, W., Suominen, A., Chen, H., & Ding, Y. (Eds.). (2024). <strong>Proceedings of Joint Workshop of the 5th Extraction and Evaluation of Knowledge Entities from Scientific Documents (EEKE2024) and the 4th AI + Informetrics (AII2024)</strong>. CEUR-WS.org <a href="https://ceur-ws.org/Vol-3745/">PDF</a></li>
<li class="text">Ghosal, T., Singh, A., De Waard, A., Mayr, P., Naik, A., Weller, O., Lee, Y., Shen, Z., & Qin, Y. (2024). <strong>Overview of the Fourth Workshop on Scholarly Document Processing</strong>. In T. Ghosal, A. Singh, A. Waard, P. Mayr, A. Naik, O. Weller, Y. Lee, S. Shen, & Y. Qin (Eds.), Proceedings of the Fourth Workshop on Scholarly Document Processing (SDP 2024) (pp. 1–6). Association for Computational Linguistics. <a href="https://aclanthology.org/2024.sdp-1.1">PDF</a></li>
<li class="text">Ghosal, T., Singh, A., Waard, A., Mayr, P., Naik, A., Weller, O., Lee, Y., Shen, S., & Qin, Y. (Eds.). (2024). <strong>Proceedings of the Fourth Workshop on Scholarly Document Processing (SDP 2024)</strong>. Association for Computational Linguistics. <a href="https://aclanthology.org/2024.sdp-1.0">Proceedings</a></li>
<li class="text">Backes, T., Iurshina, A., Shahid, M. A., & Mayr, P. (2024). <strong>Comparing Free Reference Extraction Pipelines</strong>. International Journal on Digital Libraries, 25(4), 841–853. <a href="https://doi.org/10.5281/zenodo.11072332">Preprint</a> <a href="https://doi.org/10.1007/s00799-024-00404-6">PDF</a></li>
<li class="text">Mayr, P., Hinze, A., & Schaer, P. (2024). <strong>Editorial to the special issue on JCDL 2022</strong>. International Journal on Digital Libraries, 25(2), 237–240. <a href="https://doi.org/10.1007/s00799-024-00407-3">PDF</a></li>
<li class="text">Roy, D., Carevic, Z., & Mayr, P. (2024). <strong>Retrievability in an Integrated Retrieval System: An Extended Study</strong>. International Journal on Digital Libraries, 25(2), 287–301. <a href="https://doi.org/10.1007/s00799-023-00363-4">PDF</a></li>
<li class="text">Mir, A. A., Smirnova, N., Ramalingam, J., & Mayr, P. (2024). <strong>The rise of Indo-German collaborative research: 1990–2022</strong>. Global Knowledge, Memory and Communication. <a href="http://arxiv.org/abs/2404.17171">Preprint</a> <a href="https://doi.org/10.1108/GKMC-09-2023-0328">PDF</a></li>
<li class="text">Culbert, J. H., Gupta, S., Kanaujia, A., Lathabai, H. H., Singh, V. K., & Mayr, P. (2024). <strong>Open AI Literature 2010-2020 Dataset [dataset]</strong>. Zenodo. <a href="https://doi.org/10.5281/zenodo.10997451">Dataset</a></li>
<li class="text">Czolkoß-Hettwer, M., Lein, P., & Mayr, P. (2024). <strong>Probleme und Potenziale der Forschungsinfrastrukturförderung in Deutschland am Beispiel des Fachinformationsdienstes Politikwissenschaft</strong>. Zeitschrift für Politikwissenschaft, 34(1), 101–122. <a href="https://doi.org/10.1007/s41358-024-00371-z">PDF</a></li>
<li class="text">Kartal, Y. S., Shahid, M. A., Takeshita, S., Tsereteli, T., Zielinski, A., Zapilko, B., & Mayr, P. (2024). <strong>VADIS -- a VAriable Detection, Interlinking and Summarization system</strong>. In N. Goharian, N. Tonellotto, Y. He, A. Lipani, G. McDonald, C. Macdonald, & I. Ounis (Eds.), Advances in Information Retrieval. Springer. <a href="http://arxiv.org/abs/2312.13423">Preprint</a> <a href="https://link.springer.com/chapter/10.1007/978-3-031-56069-9_22">PDF</a></li>
<li class="text">Frommholz, I., Mayr, P., Cabanac, G., & Verberne, S. (2024). <strong>Bibliometric-Enhanced Information Retrieval: 14th International BIR Workshop (BIR 2024)</strong>. In N. Goharian, N. Tonellotto, Y. He, A. Lipani, G. McDonald, C. Macdonald, & I. Ounis (Eds.), Advances in Information Retrieval. Springer. <a href="https://link.springer.com/10.1007/978-3-031-56069-9_61">PDF</a></li>
<li class="text">Hołyst, J. A., Mayr, P., Thelwall, M., Frommholz, I., Havlin, S., Sela, A., Kenett, Y. N., Helic, D., Rehar, A., Maček, S. R., Kazienko, P., Kajdanowicz, T., Biecek, P., Szymanski, B. K., & Sienkiewicz, J. (2024). <strong>Protect our environment from information overload</strong>. Nature Human Behaviour. <a href="https://doi.org/10.1038/s41562-024-01833-8">PDF</a> <a href="https://eorder.sheridan.com/3_0/app/orders/14265/article.pdf">Read free</a></li>
<li class="text">Gupta, S., Kanaujia, A., Lathabai, H. H., Singh, V. K., & Mayr, P. (2024). <strong>Patterns in the Growth and Thematic Evolution of Artificial Intelligence Research: A Study Using Bradford Distribution of Productivity and Path Analysis</strong>. International Journal of Intelligent Systems. <a href="https://doi.org/10.1155/2024/5511224">PDF</a></li>
<li class="text">Smirnova, N., Culbert, J. H., & Mayr, P. (2024). <strong>Indo-German Literature Dataset [dataset]</strong>. Zenodo. <a href="https://doi.org/10.5281/ZENODO.10607234">Dataset</a></li>
<li class="text">Zhang, Y., Zhang, C., Mayr, P., Suominen, A., & Ding, Y. (2024). <strong>An editorial of “AI + informetrics”: Robust models for large-scale analytics</strong>. Information Processing & Management, 61(1). <a href="papers/EditorialPaper-AII2022IPM.pdf">Preprint</a> <a href="https://doi.org/10.1016/j.ipm.2023.103495">PDF</a>.</li>
<br>
<strong>2023</strong>
<li class="text">Frommholz, I., Mayr, P., Cabanac, G., Verberne, S., & Brennan, J. (Eds.). (2023). <strong>Proceedings of the 13th International Workshop on Bibliometric-enhanced Information Retrieval</strong>.CEUR Workshop Proceedings. <a href="https://ceur-ws.org/Vol-3617/">Proceedings</a>.</li>
<li class="text">Momeni, F., Mayr, P., & Dietze, S. (2023). <strong>Investigating the contribution of authors' and papers' characteristics to predict the scholars' h-index</strong>. EPJ Data Science. <a href="http://arxiv.org/abs/2207.09655">Preprint</a> <a href="https://doi.org/10.1140/epjds/s13688-023-00421-6">PDF</a>.</li>
<li class="text">Biesenbender, K., Mayr, P., & Peters, I. (2023). <strong>Open Access, Preprints and Research Impact (OASE): Transcripts from Focus Group Interviews</strong>. Qualiservice, PANGAEA. <a href="https://doi.pangaea.de/10.1594/PANGAEA.960919">Dataset</a> <br>The transcripts are available via Email to [email protected] (Subject: OASE Dataset 2023).</li>
<li class="text">Biesenbender, K., Mayr, P., & Peters, I. (2023). <strong>Study Report “Open Access Effects” (OASE) – The influence of structural and author-specific factors on the impact of open access publications from various disciplines</strong>. Forschungsdatenzentrum Qualiservice. <a href="https://doi.org/10.26092/elib/2335">PDF</a></li>
<li class="text">Panggih Kusuma, N., Mayr, P., & Atanassova, I. (2023). <strong>UnScientify: Detecting Scientific Uncertainty in Scholarly Full Text</strong>. In Joint Workshop of the 4th Extraction and Evaluation of Knowledge Entities from Scientific Documents (EEKE2023) and the 3rd AI + Informetrics (AII2023) (pp. 52–58). <a href="https://ceur-ws.org/Vol-3451/paper9.pdf">PDF</a></li>
<li class="text">Zhang, C., Zhang, Y., Mayr, P., Lu, W., Suominen, A., Chen, H., & Ding, Y. (Eds.). (2023). <strong>Proceedings of Joint Workshop of the 4th Extraction and Evaluation of Knowledge Entities from Scientific Documents (EEKE2023) and the 3rd AI + Informetrics (AII2023)</strong>. CEUR-WS.org. <a href="https://ceur-ws.org/Vol-3451/">Proceedings</a></li>
<li class="text">Zhang, C., Mayr, P., Lu, W., & Zhang, Y. (2023). <strong>Guest editorial: Extraction and evaluation of knowledge entities in the age of artificial intelligence</strong>. Aslib Journal of Information Management, 75(3), 433–437. <a href="https://doi.org/10.1108/AJIM-05-2023-507">PDF</a></li>
<li class="text">Fraser, N., Hobert, A., Jahn, N., Mayr, P., & Peters, I. (2023). <strong>No Deal: German Researchers’ Publishing and Citing Behaviours after Big Deal Negotiations with Elsevier</strong>. Quantitative Science Studies, 4(2), 325–352. <a href="https://doi.org/10.1162/qss_a_00255">PDF</a></li>
<li class="text">Momeni, F., Dietze, S., Mayr, P., Biesenbender, K., & Peters, I. (2023). <strong>Which Factors are Associated with Open Access Publishing? A Springer Nature Case Study</strong>. Quantitative Science Studies, 4(2), 353–371. <a href="https://doi.org/10.1162/qss_a_00253">PDF</a></li>
<li class="text">Frommholz, I., Mayr, P., Cabanac, G., & Verberne, S. (2023). <strong>Bibliometric-Enhanced Information Retrieval: 13th International BIR Workshop (BIR 2023)</strong>. In J. Kamps, L. Goeuriot, F. Crestani, M. Maistro, H. Joho, B. Davis, C. Gurrin, U. Kruschwitz, & A. Caputo (Eds.), Advances in Information Retrieval (Vol. 13982, pp. 392–397). Springer Nature Switzerland. <a href="https://link.springer.com/10.1007/978-3-031-28241-6_43">PDF</a></li>
<li class="text">Smirnova, N., & Mayr, P. (2023). <strong>A Comprehensive Analysis of Acknowledgement Texts in Web of Science: A case study on four scientific domains</strong>. Scientometrics, 128(1), 709–734. <a href="https://doi.org/10.1007/s11192-022-04554-9">PDF</a></li>
<li class="text">Abramo, G., Aguillo, I. F., Aksnes, D. W., Boyack, K., Burrell, Q. L., Campanario, J. M., Chinchilla-Rodríguez, Z., Costas, R., D’Angelo, C. A., Harzing, A.-W., Jamali, H. R., Larivière, V., Leydesdorff, L., Luwel, M., Martin, B., Mayr, P., McCain, K. W., Peters, I., Rafols, I., … Waltman, L. (2023). <strong>Retraction of Predatory publishing in Scopus: Evidence on cross-country differences lacks justification</strong>. Scientometrics, 128(2), 1459–1461. <a href="https://doi.org/10.1007/s11192-022-04565-6">PDF</a></li>
<br>
<strong>2022</strong>
<li class="text">Fraser, N., Mayr, P., & Peters, I. (2022). <strong>Motivations, concerns and selection biases when posting preprints: A survey of bioRxiv authors</strong>. PLoS ONE, 17(11). <a href="https://doi.org/10.1371/journal.pone.0274441">PDF</a></li>
<li class="text">Zhang, Y., Zhang, C., Mayr, P., & Suominen, A. (2022). <strong>An editorial of “AI + informetrics”: Multi-disciplinary interactions in the era of big data</strong>. Scientometrics. <a href="https://doi.org/10.1007/s11192-022-04561-w">PDF</a></li>
<li class="text">Hopfgartner, F., Jaidka, K., Mayr, P., Jose, J., & Breitsohl, J. (Eds.). (2022). <strong>Social Informatics: 13th International Conference, SocInfo 2022, Glasgow, UK, October 19–21, 2022, Proceedings (Vol. 13618)</strong>. Springer International Publishing. <a href="https://link.springer.com/10.1007/978-3-031-19097-1">Proceedings</a></li>
<li class="text">Tsereteli, T., Kartal, Y. S., Ponzetto, S. P., Zielinski, A., Eckert, K., & Mayr, P. (2022). <strong>Overview of the SV-Ident 2022 Shared Task on Survey Variable Identification in Social Science Publications</strong>. Proceedings of the Third Workshop on Scholarly Document Processing (pp. 229–246). Association for Computational Linguistics. <a href="https://aclanthology.org/2022.sdp-1.29">PDF</a></li>
<li class="text">Kartal, Y. S., Takeshita, S., Tsereteli, T., Eckert, K., Kroll, H., Mayr, P., Ponzetto, S. P., Zapilko, B., & Zielinski, A. (2022). <strong>Towards Automated Survey Variable Search and Summarization in Social Science Publications</strong>. <a href="http://arxiv.org/abs/2209.06804">Technical report</a></li>
<li class="text">Frommholz, I., Mayr, P., Cabanac, G., & Verberne, S. (Eds.). (2022). <strong>Proceedings of the 12th International Workshop on Bibliometric-enhanced Information Retrieval </strong> co-located with 44th European Conference on Information Retrieval (ECIR 2022). CEUR-WS.org. <a href="http://ceur-ws.org/Vol-3230/">Proceedings</a></li>
<li class="text">Birkeneder, B., Aufenvenne, P., Haase, C., Mayr, P., & Steinbrink, M. (2022). <strong>Extracting literature references in German Speaking Geography – the GEOcite project</strong>. In Proceedings of the Workshop on Understanding LIterature references in academic full TExt (pp. 34–41). CEUR-WS.org. <a href="http://ceur-ws.org/Vol-3220/paper4.pdf">PDF</a></li>
<li class="text">Backes, T., Iurshina, A., & Mayr, P. (Eds.). (2022). <strong>Proceedings of the Workshop on Understanding LIterature references in academic full TExt</strong>. CEUR-WS.org. <a href="http://ceur-ws.org/Vol-3220/">Proceedings</a></li>
<li class="text">Zhang, C., Mayr, P., Lu, W., & Zhang, Y. (Eds.). (2022). <strong>Proceedings of the 3rd Workshop on Extraction and Evaluation of Knowledge Entities from Scientific Documents (EEKE 2022)</strong>. CEUR-WS.org. <a href="http://ceur-ws.org/Vol-3210/">Proceedings</a></li>
<li class="text">Aizawa, A., Mandl, T., Carevic, Z., Hinze, A., Mayr, P., & Schaer, P. (Eds.). (2022). <strong>JCDL ’22: Proceedings of the 22nd ACM/IEEE Joint Conference on Digital Libraries</strong>. ACM. <a href="https://dl.acm.org/doi/proceedings/10.1145/3529372">Proceedings</a></li>
<li class="text">Roy, D., Carevic, Z., & Mayr, P. (2022). <strong>Studying Retrievability of Publications and Datasets in an Integrated Retrieval System</strong>. In Proceedings of the ACM/IEEE JCDL 2022. <a href="https://arxiv.org/abs/2205.00937">Preprint</a> <a href="https://doi.org/10.1145/3529372.3530931">PDF</a></li>
<li class="text">Smirnova, N., & Mayr, P. (2022). <strong>Evaluation of Embedding Models for Automatic Extraction and Classification of Acknowledged Entities in Scientific Documents</strong>. Proceedings of the EEKE workshop at JCDL 2022. <a href="http://arxiv.org/abs/2206.10939">Preprint</a> </li>
<li class="text">Iurshina, A., Shahid, M. A., Backes, T., Mayr, P., & Staab, S. (2022). <strong>Understanding Literature References in Academic Full Text (ULITE)</strong>. JCDL ’22: Proceedings of the 22nd ACM/IEEE Joint Conference on Digital Libraries. <a href="https://doi.org/10.1145/3529372.3530942">PDF</a> </li>
<li class="text">Atanassova, I., Bertin, M., & Mayr, P. (2022). <strong>Editorial: Mining Scientific Papers Volume II: Knowledge Discovery and Data Exploitation</strong>. Frontiers in Research Metrics and Analytics. <a href="https://www.frontiersin.org/articles/10.3389/frma.2022.911070/full">PDF</a> </li>
<li class="text">Momeni, F., Karimi, F., Mayr, P., Peters, I., & Dietze, S. (2022). <strong>The many facets of academic mobility and its impact on scholars’ career</strong>. Journal of Informetrics. <a href="https://arxiv.org/abs/2203.06995">Preprint</a> <a href="https://doi.org/10.1016/j.joi.2022.101280">PDF</a> </li>
<li class="text">Frommholz, I., Mayr, P., Cabanac, G., & Verberne, S. (2022). <strong>Bibliometric-enhanced Information Retrieval: 12th International BIR Workshop (BIR 2022)</strong>. In Proc. Of ECIR 2022 (pp. 561–565). Springer International Publishing. <a href="https://doi.org/10.1007/978-3-030-99739-7_70">PDF</a> </li>
<li class="text">Roy, D., Mitra, M., Mayr, P., & Chowdhury, A. (2022). <strong>Local or Global? A Comparative Study on Applications of Embedding Models for Information Retrieval</strong>. In CODS-COMAD 2022: 5th Joint International Conference on Data Science & Management of Data (9th ACM IKDD CODS and 27th COMAD) (pp. 115–119). <a href="https://doi.org/10.1145/3493700.3493701">PDF</a> </li>
<br>
<strong>2021</strong>
<li class="text">Zhang, C., Mayr, P., Lu, W., & Zhang, Y. (Eds.). (2021). <strong>Proceedings of the 2nd Workshop on Extraction and Evaluation of Knowledge Entities from Scientific Documents (EEKE 2021)</strong>. Co-located with JCDL 2021. CEUR-WS.org. <a href="http://ceur-ws.org/Vol-3004/">Proceedings</a></li>
<li class="text">Krämer, T., Carevic, Z., Roy, D., Klas, C.-P., & Mayr, P. (2021). <strong>ConSTR: A Contextual Search Term Recommender</strong>. Proceedings of the 2021 ACM/IEEE Joint Conference on Digital Libraries (JCDL), 295–296. <a href="http://arxiv.org/abs/2106.04376">Preprint</a> <a href="https://doi.org/10.1109/JCDL52503.2021.00042">PDF</a></li>
<li class="text">Boukhers, Z., Mayr, P., & Peroni, S. (2021). <strong>BiblioDAP’21: The 1st Workshop on Bibliographic Data Analysis and Processing</strong>. Proceedings of the 27th ACM SIGKDD Conference on Knowledge Discovery and Data Mining (KDD ’21). <a href="https://arxiv.org/abs/2106.12320">Preprint</a></li>
<li class="text">Zhang, C., Mayr, P., Lu, W., & Zhang, Y. (2021). <strong>Knowledge Entity Extraction and Text Mining in the Era of Big Data</strong>. Data and Information Management, 5(3), 309–311. <a href="https://doi.org/10.2478/dim-2021-0009">PDF</a></li>
<li class="text">Zhang, Y., Zhang, C., Mayr, P., & Suominen, A. (Eds.). (2021). <strong>Proceedings of the 1st Workshop on AI + Informetrics (AII2021)</strong>. co-located with the iConference 2021. CEUR-WS.org. <a href="http://ceur-ws.org/Vol-2871/">Proceedings</a></li>
<li class="text">Hobert, A., Jahn, N., Mayr, P., Schmidt, B., & Taubert, N. (2021). <strong>Open Access Uptake in Germany 2010-18: Adoption in a diverse research landscape</strong>. Scientometrics. <a href="https://doi.org/10.1007/s11192-021-04002-0">PDF</a></li>
<li class="text">Beltagy, I., Cohan, A., Feigenblat, G., Freitag, D., Ghosal, T., Hall, K., Herrmannova, D., Knoth, P., Lo, K., Mayr, P., Patton, R., Shmueli-Scheuer, M., de Waard, A., Wang, K., & Wang, L. (2021). <strong>Overview of the Second Workshop on Scholarly Document Processing</strong>. Proceedings of the Second Workshop on Scholarly Document Processing, 159–165. <a href="https://aclanthology.org/2021.sdp-1.22">PDF</a> </li>
<li class="text">Beltagy, I., Cohan, A., Feigenblat, G., Freitag, D., Ghosal, T., Hall, K., Herrmannova, D., Knoth, P., Lo, K., Mayr, P., Patton, R. M., Shmueli-Scheuer, M., de Waard, A., Wang, K., & Wang, L. L. (Eds.). (2021). <strong>Proceedings of the Second Workshop on Scholarly Document Processing</strong>. Association for Computational Linguistics. <a href="https://aclanthology.org/volumes/2021.sdp-1/">Proceedings</a> </li>
<li class="text">Momeni, F., Mayr, P., Fraser, N., & Peters, I. (2021). <strong>What happens when a journal converts to Open Access? A bibliometric analysis</strong>. Scientometrics. <a href="https://doi.org/10.1007/s11192-021-03972-5">PDF</a> </li>
<li class="text">Singh, V. K., Singh, P., Karmakar, M., Leta, J., & Mayr, P. (2021). <strong>The Journal Coverage of Web of Science, Scopus and Dimensions: A Comparative Analysis</strong>. Scientometrics. <a href="http://arxiv.org/abs/2011.00223">Preprint</a> <a href="https://link.springer.com/article/10.1007/s11192-021-03948-5">PDF</a></li>
<li class="text">Frommholz, I., Mayr, P., Cabanac, G., & Verberne, S. (Eds.). (2021). <strong>Proceedings of the 11th International Workshop on Bibliometric-enhanced Information Retrieval </strong> co-located with 43rd European Conference on Information Retrieval (ECIR 2021). CEUR-WS.org <a href="http://ceur-ws.org/Vol-2847/">Proceedings</a></li>
<li class="text">Frommholz, I., Mayr, P., Cabanac, G., & Verberne, S. (2021). <strong>Bibliometric-Enhanced Information Retrieval: 11th International BIR Workshop</strong>. In Proc. of ECIR 2021. Springer International Publishing. <a href="papers/ECIR2021-BIR.pdf">Preprint</a> <a href="https://link.springer.com/chapter/10.1007/978-3-030-72240-1_85">PDF</a></li>
<br>
<strong>2020</strong>
<li class="text">Chandrasekaran, M. K., Feigenblat, G., Freitag, D., Ghosal, T., Hovy, E., Mayr, P., Shmueli-Scheuer, M., & de Waard, A. (2020). <strong>Overview of the First Workshop on Scholarly Document Processing (SDP)</strong>. Proceedings of the First Workshop on Scholarly Document Processing, 1–6. EMNLP 2020, Online. <a href="https://www.aclweb.org/anthology/2020.sdp-1.1.pdf">PDF</a></li>
<li class="text">Chandrasekaran, M. K., de Waard, A., Feigenblat, G., Freitag, D., Ghosal, T., Hovy, E., Knoth, P., Konopnicki, D., Mayr, P., Patton, R. M., & Shmueli-Scheuer, M. (Eds.) (2020). <strong>Proceedings of the First Workshop on Scholarly Document Processing</strong>. Association for Computational Linguistics. EMNLP 2020, Online. <a href="https://www.aclweb.org/anthology/volumes/2020.sdp-1/">PDF</a></li>
<li class="text">Cabanac, G., Frommholz, I., & Mayr, P. (2020). <strong>Scholarly literature mining with Information Retrieval and Natural Language Processing: Preface</strong>. Scientometrics. <a href="https://doi.org/10.1007/s11192-020-03763-4">PDF</a></li>
<li class="text">Daquino, M., Peroni, S., Shotton, D., Colavizza, G., Ghavimi, B., Lauscher, A., Mayr, P., Romanello, M., & Zumstein, P. (2020). <strong>The OpenCitations Data Model</strong>. Proceedings of International Semantic Web Conference (ISWC 2020), 447–463. <a href="https://arxiv.org/abs/2005.11981">Preprint</a> <a href="https://doi.org/10.1007/978-3-030-62466-8_28">PDF</a> </li>
<li class="text">Carevic, Z., Roy, D., & Mayr, P. (2020). <strong>Characteristics of Dataset Retrieval Sessions: Experiences from a Real-life Digital Library</strong>. Proceedings of TPDL 2020. <a href="https://arxiv.org/abs/2006.02770">Preprint</a> <a href="https://link.springer.com/chapter/10.1007/978-3-030-54956-5_14">PDF</a></li>
<li class="text">Zhang, C., Mayr, P., Lu, W., & Zhang, Y. (2020). <strong>Extraction and Evaluation of Knowledge Entities from Scientific Documents: EEKE2020</strong>. In Proceedings of the ACM/IEEE Joint Conference on Digital Libraries in 2020 (JCDL ’20). <a href="papers/EEKE2020.pdf">Preprint</a> <a href="https://dl.acm.org/doi/10.1145/3383583.3398504">PDF</a></li>
<li class="text">Zhang, C., Mayr, P., Lu, W., & Zhang, Y. (2020). <strong>Proceedings of the 1st Workshop on Extraction and Evaluation of Knowledge Entities from Scientific Documents</strong>. co-located with the ACM/IEEE Joint Conference on Digital Libraries in 2020 (JCDL 2020). CEUR-WS.org. <a href="http://ceur-ws.org/Vol-2658/">PDF</a></li>
<li class="text">Nunes, S., Little, S., Bhatia, S., Boratto, L., Cabanac, G., Campos, R., Couto, F. M., Faralli, S., Frommholz, I., Jatowt, A., Jorge, A., Marras, M., Mayr, P., & Stilo, G. (2020). <strong>ECIR 2020 Workshops: Assessing the Impact of Going Online</strong>. SIGIR Forum. <a href="https://arxiv.org/abs/2005.06748">Preprint</a> <a href="http://sigir.org/wp-content/uploads/2020/06/p09.pdf">PDF</a></li>
<li class="text">Kacem, A., Flatt, J.W., & Mayr, P. (2020). <strong>Tracking self-citations in academic publishing</strong>. Scientometrics, 123(2), 1157–1165. <a href="https://doi.org/10.1007/s11192-020-03413-9">PDF</a></li>
<li class="text">Fraser, N., Momeni, F., Mayr, P., & Peters, I. (2020). <strong>The relationship between bioRxiv preprints, citations and altmetrics</strong>. Quantitative Science Studies, 1(2), 618–638. <a href="https://doi.org/10.1162/qss_a_00043">PDF</a>. </li>
<li class="text">Cabanac, G., Frommholz, I., & Mayr, P. (2020). <strong>Report on the 10th Anniversary Workshop on Bibliometric-enhanced Information Retrieval (BIR 2020)</strong> SIGIR Forum. <a href="http://sigir.org/wp-content/uploads/2020/06/p12.pdf">PDF</a></li>
<li class="text">Cabanac, G., Frommholz, I., & Mayr, P. (2020). <strong>Bibliometric-enhanced Information Retrieval 10th Anniversary Workshop Edition</strong> In Proceedings of ECIR 2020. <a href="https://doi.org/10.1007/978-3-030-45442-5_85">PDF</a></li>
<br>
<strong>2019</strong>
<li class="text">Chandrasekaran, M. K. & Mayr, P. (2019). <strong>Report on the 4th Joint Workshop on Bibliometric-enhanced Information Retrieval and Natural Language Processing for Digital Libraries at SIGIR 2019</strong> SIGIR Forum, 53(2), 3–10. <a href="http://sigir.org/wp-content/uploads/2019/december/p003.pdf">PDF</a></li>
<li class="text">Atanassova, I., Bertin, M., & Mayr, P. (Eds.). (2019). <strong>Mining Scientific Papers: NLP-enhanced Bibliometrics</strong>. Frontiers Media SA. <a href="https://doi.org/10.3389/978-2-88945-964-3">EBook</a></li>
<li class="text">Chandrasekaran, M. K. & Mayr, P. (2019). <strong>Proceedings of the 4th Joint Workshop on Bibliometric-enhanced Information Retrieval and Natural Language Processing for Digital Libraries (BIRNDL 2019) </strong> co-located with the 42nd International ACM SIGIR Conference on Research and Development in Information Retrieval (SIGIR 2019), Paris, France. <a href="http://ceur-ws.org/Vol-2414/">Proceedings</a></li>
<li class="text">Piryani, R., Otto, W., Mayr, P., & Singh, V. K. (2019). <strong>Analysing author name mentions in citation contexts of highly cited publications</strong>. Proc. of BIRNDL 2019, 145–152. <a href="http://ceur-ws.org/Vol-2414/paper16.pdf">PDF</a></li>
<li class="text">Azzopardi, L., Stein, B., Fuhr, N., Mayr, P., Hauff, C., & Hiemstra, D. (Eds.). (2019). <strong>Advances in Information Retrieval. 41st European Conference on IR Research, ECIR 2019</strong>. Cologne, Germany, April 14-18, 2019, Proceedings, <a href="https://link.springer.com/book/10.1007/978-3-030-15712-8">Part I</a>/<a href="https://link.springer.com/book/10.1007/978-3-030-15719-7">II</a>. Springer Nature Switzerland AG.</li>
<li class="text">Ghavimi, B., Otto, W., & Mayr, P. (2019). <strong>An Evaluation of the Effect of Reference Strings and Segmentation on Citation Matching</strong>. Proc. of TPDL 2019, 365–369. <a href="papers/TPDL2019-EXCITE.pdf">Preprint</a> <a href="https://doi.org/10.1007/978-3-030-30760-8_35">PDF</a></li>
<li class="text">Ghavimi, B., Otto, W., & Mayr, P. (2019). <strong>EXmatcher: Combining Features Based on Reference Strings and Segments to Enhance Citation Matching</strong>. <a href="https://arxiv.org/abs/1906.04484">Preprint</a></li>
<li class="text">Chandrasekaran, M. K., Mayr, P., Yasunaga, M., Freitag, D., Radev, D., & Kan, M.-Y. (2019). <strong>Joint Workshop on Bibliometric-enhanced Information Retrieval and Natural Language Processing for Digital Libraries (BIRNDL 2019). </strong> Proceedings of the 42nd International ACM SIGIR Conference on Research and Development in Information Retrieval - SIGIR ’19. <a href="papers/BIRNDL-2019.pdf">Preprint</a> <a href="https://doi.org/10.1145/3331184.3331650">PDF</a></li>
<li class="text">Cabanac, G., Frommholz, I., & Mayr, P. (2019). <strong>Report on the 8th International Workshop on Bibliometric-enhanced Information Retrieval (BIR 2019)</strong>. SIGIR Forum, 53(1), 21–28. <a href="http://sigir.org/wp-content/uploads/2019/02/p021.pdf">PDF</a></li>
<li class="text">Cabanac, G., Frommholz, I., & Mayr, P. (2019). <strong>Bibliometric-enhanced Information Retrieval: 8th International BIR Workshop</strong>. In Advances in Information Retrieval. 41st European Conference on IR Research, ECIR 2019. <a href="papers/bir2019.pdf"> Preprint</a> <a href="https://doi.org/10.1007/978-3-030-15719-7_55">PDF</a></li>
<li class="text">Cabanac, G., Frommholz, I., & Mayr, P. (2019). <strong>Proceedings of the Eighth Workshop on Bibliometric-enhanced Information Retrieval (BIR) </strong> co-located with the 41st European Conference on Information Retrieval (ECIR 2019), Cologne, Germany, April 14th, 2019. <a href="http://ceur-ws.org/Vol-2345/">Proceedings</a></li>
<li class="text">Atanassova, I., Bertin, M., & Mayr, P. (2019) <strong>Editorial: Mining Scientific Papers: NLP-enhanced Bibliometrics</strong> Frontiers in Research Metrics and Analytics. <a href="https://doi.org/10.3389/frma.2019.00002">PDF</a></li>
<li class="text">Banshal, S. K., Singh, V. K., Muhuri, P., & Mayr, P. (2019). <strong>How much Research Output from India gets Social Media Attention?</strong>. Current Science, 117(5), 753–760. <a href="https://www.currentscience.ac.in/Volumes/117/05/0753.pdf">PDF</a></li>
<li class="text">Banshal, S. K., Singh, V. K., & Mayr, P. (2019). <strong>Comparing research performance of private universities in India with IITs, central universities and NITs</strong>. Current Science, 116(8), 1304–1313. <a href="https://www.currentscience.ac.in/Volumes/116/08/1304.pdf">PDF</a></li>
<li class="text">Sadeghi, A., Capadisli, S., Wilm, J., Lange, C., & Mayr, P. (2019). <strong>Opening and Reusing Transparent Peer Reviews with Automatic Article Annotation</strong>. Publications, 7(1). <a href="https://www.mdpi.com/2304-6775/7/1/13">PDF</a></li>
<li class="text">Otto, W., Ghavimi, B., Mayr, P., Piryani, R., & Singh, V. K. (2019). <strong>Highly cited references in PLOS ONE and their in-text usage over time</strong>. Proceedings of the 17th International Conference on Scientometrics & Informetrics (ISSI 2019). <a href="https://arxiv.org/abs/1903.11693">Preprint</a></li>
<li class="text">Banshal, S. K., Singh, V. K., Muhuri, P., & Mayr, P. (2019). <strong>Disciplinary Variations in Altmetric Coverage of Scholarly Articles</strong>. Proceedings of the 17th International Conference on Scientometrics & Informetrics (ISSI 2019). </li>
<li class="text">Momeni, F., Mayr, P., Fraser, N., & Peters, I. (2019). <strong>From closed to open access: A case study of flipped journals</strong>. Proceedings of the 17th International Conference on Scientometrics & Informetrics (ISSI 2019). <a href="https://arxiv.org/abs/1903.11682">Preprint</a></li>
<li class="text">Fraser, N., Momeni, F., Mayr, P., & Peters, I. (2019). <strong>Examining the citation and altmetric advantage of bioRxiv preprints</strong>. Proceedings of the 17th International Conference on Scientometrics & Informetrics (ISSI 2019). </li>
<li class="text">Abediyarandi, N., & Mayr, P. (2019). <strong>The State of Open Access in Germany: An Analysis of the Publication Output of German Universities</strong>. Proceedings of the 17th International Conference on Scientometrics & Informetrics (ISSI 2019). <a href="https://arxiv.org/abs/1905.00011">Preprint</a></li>
<li class="text">Hosseini, A., Ghavimi, B., Boukhers, Z. & Mayr, P. (2019). <strong>EXCITE - A toolchain to extract, match and publish open literature references</strong>. Proceedings of the ACM/IEEE Joint Conference on Digital Libraries 2019 (JCDL 2019). <a href="papers/JCDL2019-EXCITE-demo.pdf"> Preprint</a> <a href="https://doi.org/10.1109/JCDL.2019.00105"> PDF</a></li>
<li class="text">Karimi, F., Mayr, P., & Momeni, F. (2019). <strong>Analyzing the network structure and gender differences among the members of the Networked Knowledge Organization Systems (NKOS) community</strong>. International Journal on Digital Libraries, 20(3), 231–239. <a href="http://arxiv.org/abs/1803.04225"> Preprint</a> <a href="https://doi.org/10.1007/s00799-018-0243-0">PDF</a></li>
<li class="text">Zeng, M. L., & Mayr, P. (2019). <strong>Knowledge Organization Systems (KOS) in the Semantic Web: A Multi-Dimensional Review</strong>. International Journal on Digital Libraries, 20(3), 209–230. <a href="https://arxiv.org/abs/1801.04479"> Preprint</a> <a href="https://doi.org/10.1007/s00799-018-0241-2">PDF</a></li>
<br>
<strong>2018</strong>
<li class="text">Koesten, L., Mayr, P., Groth, P., Simperl, E., & de Rijke, M. (2018). <strong>Report on the DATA:SEARCH’18 workshop - Searching Data on the Web</strong>. SIGIR Forum, 52(2), 117–124. <a href="http://sigir.org/wp-content/uploads/2019/01/p117.pdf">PDF</a></li>
<li class="text">Mayr, P., Chandrasekaran, M. K., & Jaidka, K. (2018). <strong>Report on the 3rd Joint Workshop on Bibliometric-enhanced Information Retrieval and Natural Language Processing for Digital Libraries (BIRNDL 2018)</strong>. SIGIR Forum, 52(2), 105–110. <a href="http://sigir.org/wp-content/uploads/2019/01/p105.pdf">PDF</a></li>
<li class="text">Cabanac, G., Frommholz, I. & Mayr, P. (2018). <strong>Bibliometric-enhanced information retrieval: preface</strong>. Scientometrics, 116(2), 1225–1227. <a href="https://link.springer.com/article/10.1007/s11192-018-2861-0">PDF</a> </li>
<li class="text">Kacem, A., & Mayr, P. (2018). <strong>Analysis of Search Stratagem Utilisation</strong>. Scientometrics, 116(2), 1383–1400. <a href="https://arxiv.org/abs/1806.05259">Preprint</a> <a href="https://doi.org/10.1007/s11192-018-2821-8">PDF</a> </li>
<li class="text">Mayr, P., Frommholz, I., Cabanac, G., Chandrasekaran, M. K., Jaidka, K., Kan, M.-Y., & Wolfram, D. (2018). <strong>Introduction to the Special Issue on Bibliometric-Enhanced Information Retrieval and Natural Language Processing for Digital Libraries (BIRNDL)</strong>. International Journal on Digital Libraries, 19(2–3), 107–111. <a href="https://doi.org/10.1007/s00799-017-0230-x"> PDF</a></li>
<li class="text"> Carevic, Z., Lusky, M., van Hoek, W., & Mayr, P. (2018). <strong>Investigating Exploratory Search Activities based on the Stratagem Level in Digital Libraries</strong>. International Journal on Digital Libraries, 19(2–3), 231–251. <a href="https://arxiv.org/abs/1706.06410">Preprint</a> <a href="https://link.springer.com/article/10.1007/s00799-017-0226-6">PDF</a> </li>
<li class="text">Carevic, Z., Schüller, S., Mayr, P., & Fuhr, N. (2018). <strong>Contextualised Browsing in a Digital Library’s Living Lab</strong>. Proceedings of the 18th ACM/IEEE on Joint Conference on Digital Libraries (pp. 89–98). Fort Worth, Texas, USA: ACM New York, NY, USA. <a href="papers/JCDL2018.pdf">Preprint</a> <a href="https://doi.org/10.1145/3197026.3197054">PDF</a> </li>
<li class="text">Mayr, P., Chandrasekaran, M. & Jaidka, K. (2018). <strong>Editorial for the 3rd Joint Workshop on Bibliometric-enhanced Information Retrieval and Natural Language Processing for Digital Libraries (BIRNDL) at SIGIR 2018</strong>. Proceedings of the 3rd Joint Workshop on Bibliometric-enhanced Information Retrieval and Natural Language Processing for Digital Libraries (BIRNDL 2018) <a href="http://ceur-ws.org/Vol-2132/editorial.pdf">PDF</a> </li>
<li class="text">Chandrasekaran, M. K., Jaidka, K., & Mayr, P. (2018). <strong>Joint Workshop on Bibliometric-enhanced Information Retrieval and Natural Language Processing for Digital Libraries (BIRNDL 2018)</strong>. Proceedings of the 41st International ACM SIGIR Conference on Research and Development in Information Retrieval - SIGIR ’18 (pp. 1415–1418). Ann Arbor, MI, USA. <a href="papers/BIRNDL18-workshop.pdf">Preprint</a> <a href="https://doi.org/10.1145/3209978.3210194">PDF</a> </li>
<li class="text">Groth, P., Koesten, L., Mayr, P., de Rijke, M., & Simperl, E. (2018). <strong>DATA:SEARCH’18 - Searching Data on the Web</strong>. Proceedings of the 41st International ACM SIGIR Conference on Research and Development in Information Retrieval - SIGIR ’18. Ann Arbor, MI, USA. <a href="https://arxiv.org/pdf/1805.11883.pdf">Preprint</a> <a href="https://doi.org/10.1145/3209978.3210195">PDF</a></li>
<li class="text">Kacem, A., & Mayr, P. (2018). <strong>Users are not influenced by high impact and core journals while searching</strong>. Proc. of the 7th BIR workshop at ECIR 2018, Grenoble, France. <a href="http://ceur-ws.org/Vol-2080/paper7.pdf">PDF</a></li>
<li class="text">Hienert, D., Mitsui, M., Mayr, P., Shah, C., & Belkin, N. J. (2018). <strong>The Role of the Task Topic in Web Search of Different Task Types</strong>. CHIIR ’18 Proceedings of the 2018 Conference on Human Information Interaction & Retrieval (pp. 72–81). New Brunswick, NJ, USA. <a href="papers/CHIIR_2018_Hienert_etal_preprint.pdf">Preprint</a> <a href="https://doi.org/10.1145/3176349.3176382">PDF</a></li>
<li class="text">Mayr, P., Frommholz, I., & Cabanac, G. (2018). <strong>Editorial for the 7th Bibliometric-enhanced Information Retrieval Workshop at ECIR 2018</strong>. Proc. of the 7th BIR workshop at ECIR 2018. <a href="http://ceur-ws.org/Vol-2080/editorial.pdf"> PDF</a></li>
<li class="text">Mayr, P., Frommholz, I., & Cabanac, G. (2018). <strong>Bibliometric-enhanced Information Retrieval: 7th International BIR Workshop</strong>. Proceedings of ECIR 2018. <a href="papers/BIR-workshop-2018.pdf"> PDF</a></li>
<br>
<strong>2017</strong>
<li class="text">Mayr, P., Chandrasekaran, M. K., & Jaidka, K. (2017). <strong>Report on the 2nd Joint Workshop on Bibliometric-enhanced Information Retrieval and Natural Language Processing for Digital Libraries (BIRNDL 2017)</strong>. SIGIR Forum, 51(3), 107–113. <a href="http://sigir.org/wp-content/uploads/2018/01/p107.pdf"> PDF</a></li>
<li class="text">Mayr, P., & Lange, C. (2017). <strong>The Opening Scholarly Communication in Social Sciences project OSCOSS</strong>. In P. Hauke, A. Kaufmann, & V. Petras (Hrsg.), Bibliothek - Forschung für die Praxis. Festschrift für Konrad Umlauf zum 65. Geburtstag (S. 433-444). De Gruyter. <a href="http://arxiv.org/abs/1611.04760"> Preprint</a> <a href="https://doi.org/10.1515/9783110522334-037"> PDF</a></li>
<li class="text">Atanassova, I., Bertin, M., & Mayr, P. (2017). <strong>Editorial for the Second Workshop on Mining Scientific Papers: Computational Linguistics and Bibliometrics (CLBib2017)</strong>. In Proc. of the Second Workshop on Mining Scientific Papers: Computational Linguistics and Bibliometrics (CLBib-2017) (S. 1-4). CEUR-WS.org. <a href="http://ceur-ws.org/Vol-2004/editorial-clbib2017.pdf"> PDF</a></li>
<li class="text">Mayr, P., Tudhope, D., Golub, K., Wartena, C., & De Luca, E. W. (2017). <strong>Editorial of the 17th European Networked Knowledge Organization Systems Workshop (NKOS 2017)</strong>. Proc. of the 17th European Networked Knowledge Organization Systems Workshop (NKOS 2017). Thessaloniki, Greece: CEUR-WS.org. <a href="http://ceur-ws.org/Vol-1937/editorial.pdf"> PDF</a></li>
<li class="text">Belkin, N. J., Hienert, D., Mayr, P., & Shah, C. (2017). <strong>Data Requirements for Evaluation of Personalization of Information Retrieval - A Position Paper</strong>. PIR-CLEF2017 workshop. <a href="http://ceur-ws.org/Vol-1866/paper_193.pdf"> PDF</a></li>
<li class="text">Kacem, A., & Mayr, P. (2017). <strong>Analysis of Footnote Chasing and Citation Searching in an Academic Search Engine</strong>. Proc. of the 2nd BIRNDL Workshop. Tokyo, Japan. <a href="http://ceur-ws.org/Vol-1888/paper8.pdf"> PDF</a></li>
<li class="text">Körner, M., Ghavimi, B., Mayr, P., Hartmann, H., & Staab, S. (2017). <strong>Evaluating Reference String Extraction Using Line-Based Conditional Random Fields: A Case Study with German Language Publications</strong>. Proc. of the AMSD workshop 2017. <a href="papers/Koerner-et-al2017.pdf"> Preprint</a> <a href="https://link.springer.com/chapter/10.1007/978-3-319-67162-8_15"> PDF</a></li>
<li class="text">Mayr, P., Chandrasekaran, M. K., & Jaidka, K. (2017). <strong>Editorial for the 2nd Joint Workshop on Bibliometric-enhanced Information Retrieval and Natural Language Processing for Digital Libraries (BIRNDL) at SIGIR 2017</strong>. Proceedings of the 2nd Joint Workshop on Bibliometric-enhanced Information Retrieval and Natural Language Processing for Digital Libraries (BIRNDL 2017) Tokyo, Japan: CEUR-WS.org, <a href="http://ceur-ws.org/Vol-1888/editorial.pdf"> PDF</a> </li>
<li class="text">Chandrasekaran, M. K., Jaidka, K., & Mayr, P. (2017). <strong>Joint Workshop on Bibliometric-enhanced Information Retrieval and Natural Language Processing for Digital Libraries (BIRNDL 2017)</strong>. In SIGIR '17: The 40th International ACM SIGIR Conference on Research and Development in Information Retrieval. Tokyo, Japan: ACM. <a href="https://arxiv.org/abs/1706.02509"> Preprint</a> <a href="http://dl.acm.org/citation.cfm?doid=3077136.3084370"> PDF</a> </li>
<li class="text">Mayr, P., & Kacem, A. (2017). <strong>A Complete Year of User Retrieval Sessions in a Social Sciences Academic Search Engine</strong>. 21st International Conference on Theory and Practice of Digital Libraries (TPDL 2017). <a href="http://arxiv.org/abs/1706.00816"> Preprint</a> <a href="https://doi.org/10.1007/978-3-319-67008-9_46"> PDF</a> </li>
<li class="text">Wilm, J., Sadeghi, A., Lange, C., & Mayr, P. (2017). <strong>Decentralized creation of academic documents using a Network Attached Storage (NAS) server</strong>. Enabling Decentralised Scholarly Communication co-located with the Extended Semantic Web Conference (ESWC 2017). Portoroz, Slovenia. <a href="https://arxiv.org/abs/1706.04185"> Preprint</a> </li>
<li class="text"> Mayr, P., Frommholz, I., & Cabanac, G. (2017). <strong>Report on the 5th International Workshop on Bibliometric-enhanced Information Retrieval (BIR 2017)</strong>. SIGIR Forum, 51(1), 29-35. <a href="http://sigir.org/wp-content/uploads/2017/06/p029.pdf">PDF</a> </li>
<li class="text"> Bensmann, F., Zapilko, B., & Mayr, P. (2017). <strong>Interlinking Large Scale Library Data with Authority Records</strong>. Front. Digit. Humanit., 4(5). <a href="https://doi.org/10.3389/fdigh.2017.00005">Full article</a> </li>
<li class="text"> Mayr, P., Frommholz, I., & Cabanac, G. (2017). <strong>Editorial for the 5th Bibliometric-enhanced Information Retrieval Workshop at ECIR 2017</strong>. Proceedings of the Fifth Workshop on Bibliometric-enhanced Information Retrieval (BIR) co-located with the 39th European Conference on Information Retrieval (ECIR 2017), Aberdeen, UK, April 9th, 2017. <a href="http://ceur-ws.org/Vol-1823/editorial.pdf">PDF</a></li>
<li class="text"> Mayr, P., Frommholz, I., & Cabanac, G. (2017). <strong>Bibliometric-Enhanced Information Retrieval: 5th International BIR Workshop</strong>. In J. M. Jose, C. Hauff, I. S. Altingovde, D. Song, D. Albakour, S. Watt, & J. Tait (Eds.), 39th European Conference on IR Research, ECIR 2017 (Vol. 10193, pp. 784-789). Cham: Springer International Publishing. <a href="papers/ECIR2017.pdf">PDF</a></li>
<li class="text"> Sadeghi, A., Wilm, J., Mayr, P., & Lange, C. (2017). <strong>Opening Scholarly Communication in Social Sciences by Connecting Collaborative Authoring to Peer Review</strong>. Information - Wissenschaft & Praxis, 68(2-3), 1-8. <a href="https://arxiv.org/abs/1703.04428">Preprint</a></li>
<li class="text"> Krämer, T., Momeni, F., & Mayr, P. (2017). <strong>Coverage of Author Identifiers in Web of Science and Scopus</strong>. Working paper. <a href="https://arxiv.org/abs/1703.01319">Preprint</a> </li>
<li class="text"> Mutschke, P., Scharnhorst, A., Belkin, N. J., Skupin, A., & Mayr, P. (2017). <strong>Guest editors' introduction to the special issue on knowledge maps and information retrieval (KMIR)</strong>. International Journal on Digital Libraries, 18(1), 1-3. <a href="http://doi.org/10.1007/s00799-016-0204-4">PDF</a> </li>
<li class="text"> Mayr, P., & Weller, K. (2017). <strong>Think Before You collect: Setting Up a Data Collection Approach for Social Media Studies</strong>. In L. Sloan & A. Quan-Haase (Eds.), The SAGE Handbook of Social Media Research Methods (pp. 107-124). London: SAGE Publications Ltd. <a href="http://arxiv.org/abs/1601.06296">Preprint</a> </li>
<li class="text"> Beel, J., Dinesh, S., Mayr, P., Carevic, Z., & Raghvendra, J. (2017). <strong>Stereotype and Most-Popular Recommendations in the Digital Library Sowiport</strong>. In Proc. of the 15th International Symposium of Information Science. <a href="http://beel.org/publications/2017%20ISI%20--%20Stereotype%20and%20Most-Popular%20Recommendations%20in%20Sowiport%20--%20preprint.pdf">PDF</a></li>
<li class="text"> Beel, J., Dinesh, S., Mayr, P., Carevic, Z., & Raghvendra, J. (2017). <strong>Stereotype and Most-Popular Recommendations in the Digital Library Sowiport [Dataset]</strong>. Harvard Dataverse. <a href="http://doi.org/10.7910/DVN/HFIV1A">Dataset</a></li>
<br>
<strong>2016</strong>
<li class="text"> Ghavimi, B., Mayr, P., Lange, C., Vahdati, S., & Auer, S. (2016). <strong>A Semi-Automatic Approach for Detecting Dataset References in Social Science Texts</strong>. Information Services & Use, 36(3–4), 171–187. <a href="https://doi.org/10.3233/ISU-160816">PDF</a></li>
<li class="text"> Mayr, P. (2016). <strong>Sowiport user queries sample (SQS)</strong>. GESIS, Datorium <a href="http://doi.org/10.7802/1372">Dataset</a></li>
<li class="text"> Mayr, P. (2016). <strong>Sowiport User Search Sessions Data Set (SUSS)</strong>. GESIS, Datorium <a href="http://doi.org/10.7802/1380">Dataset</a></li>
<li class="text"> Bar-Ilan, J., Koopman, R., Wang, S., Scharnhorst, A., John, M., Mayr, P., & Wolfram, D. (2016). <strong>Bibliometrics and Information Retrieval: Creating Knowledge through Research Synergies</strong>. Annual Meeting of the Association for Information Science and Technology (ASIST 2016). Copenhagen, Denmark. <a href="http://arxiv.org/abs/1608.08180">PDF</a></li>
<li class="text"> Momeni, F., & Mayr, P. (2016). <strong>Analyzing the research output presented at European Networked Knowledge Organization Systems workshops (2000-2015)</strong>. Proc. of the 15th European Networked Knowledge Organization Systems Workshop (NKOS 2016) <a href="http://ceur-ws.org/Vol-1676/paper1.pdf">PDF</a></li>
<li class="text"> Momeni, F., & Mayr, P. (2016). <strong>Evaluating Co-Authorship Networks in Author Name Disambiguation for Common Names</strong>. 20th International Conference on Theory and Practice of Digital Libraries (TPDL 2016) (pp. 386–391) <a href="papers/Momeni-Mayr_2016.pdf">Preprint</a> <a href="https://doi.org/10.1007/978-3-319-43997-6_31">PDF</a></li>
<li class="text"> Carevic, Z., & Mayr, P. (2016). <strong>Survey on High-level Search Activities based on the Stratagem Level in Digital Libraries</strong>. 20th International Conference on Theory and Practice of Digital Libraries (TPDL 2016) (pp. 54–66) <a href="papers/Carevic-Mayr_2016.pdf">Preprint</a> <a href="https://doi.org/10.1007/978-3-319-43997-6_5">PDF</a></li>
<li class="text"> Mayr, P. (2016). <strong>How do practitioners, PhD students and postdocs in the social sciences assess topic-specific recommendations?</strong>. Joint Workshop on Bibliometric-enhanced Information Retrieval and Natural Language Processing for Digital Libraries (BIRNDL 2016) <a href="http://ceur-ws.org/Vol-1610/paper10.pdf">Preprint</a> </li>
<li class="text"> Momeni, F., & Mayr, P. (2016). <strong>Using co-authorship networks for author name disambiguation</strong>. JCDL '16: The 16th ACM/IEEE-CS Joint Conference on Digital Libraries <a href="papers/Co-Authorship_JCDL2016.pdf">Preprint</a> </li>
<li class="text"> Momeni, F., & Mayr, P. (2016). <strong> An open testbed for author name disambiguation evaluation</strong>. <a href="http://dx.doi.org/10.7802/1234">Dataset</a> </li>
<li class="text"> Schaer, P., Mayr, P., Sünkler, S., & Lewandowski, D. (2016). <strong>How Relevant is the Long Tail?</strong>. 7th International Conference of the CLEF Association, CLEF 2016 (pp. 227–233). Springer International Publishing. <a href="https://arxiv.org/abs/1606.06081">Preprint</a> <a href="https://doi.org/10.1007/978-3-319-44564-9_20">PDF</a> </li>
<li class="text"> Cabanac, G. et al. (2016). <strong>Joint Workshop on Bibliometric-enhanced Information Retrieval and Natural Language Processing for Digital Libraries (BIRNDL 2016)</strong>. JCDL '16: The 16th ACM/IEEE-CS Joint Conference on Digital Libraries <a href="papers/BIRNDL-2016.pdf">Preprint</a> </li>
<li class="text"> Ghavimi, B., Mayr, P., Vahdati, S., & Lange, C. (2016). <strong>Identifying and Improving Dataset References in Social Sciences Full Texts</strong>. In 20th International Conference on Electronic Publishing. Göttingen. <a href="http://arxiv.org/abs/1603.01774">Preprint</a> <a href="http://ebooks.iospress.nl/publication/42903">PDF</a></li>
<li class="text"> Mayr, P., Frommholz, I., & Cabanac, G. (2016). <strong>Bibliometric-Enhanced Information Retrieval: 3rd International BIR Workshop</strong>. In 38th European Conference on IR Research, ECIR 2016, Padova, Italy. Springer International Publishing. <a href="http://arxiv.org/abs/1510.05120">Preprint</a> </li>
<li class="text"> Mayr, P., Momeni, F., & Lange, C. (2016). <strong>Opening Scholarly Communication in Social Sciences: Supporting Open Peer Review with Fidus Writer</strong>. In 2016 Annual EA Conference: "Innovating the Gutenberg Galaxis. The role of peer review and open access in university knowledge dissemination and evaluation." Mainz, Germany. <a href="http://dx.doi.org/10.5281/zenodo.44609">PDF</a> </li>
<li class="text"> Mayr, P., Tudhope, D., Clarke, S. D., Zeng, M. L., & Lin, X. (2016). <strong>Recent applications of Knowledge Organization Systems: introduction to a special issue</strong>. International Journal on Digital Libraries, 17(1), 1–4. <a href="http://link.springer.com/article/10.1007%2Fs00799-015-0167-x">PDF</a></li>
<br>
<strong>2015</strong>
<li class="text">Kaczmirek, L., & Mayr, P. (2015). <strong>German Bundestag Elections 2013: Twitter usage by electoral candidates</strong>. Cologne: GESIS Data Archive. <a href="http://dx.doi.org/10.4232/1.12319">10.4232/1.12319</a>. Data set (ZA5973 Data file Version 1.0.0) </li>
<li class="text"> Haddou ou Moussa, K., Mutschke, P., & Mayr, P. (2015). <strong>Experimentelle Entwicklung eines Prototyps zum Monitoring von Entwicklungsverläufen in einem Forschungsfeld</strong>. In A. Botte, U. Sondergeld, & M. Rittberger (Eds.), Monitoring Bildungsforschung. <a href="papers/MoBi_2015.pdf">PDF</a></li>
<li class="text"> Atanassova, I., Bertin, M., & Mayr, P. (2015). <strong>Editorial for the First Workshop on Mining Scientific Papers: Computational Linguistics and Bibliometrics</strong>. Workshop on Mining Scientific Papers: Computational Linguistics and Bibliometrics (<a href="http://ceur-ws.org/Vol-1384/">CLBib</a>). Istanbul, Turkey. <a href="http://ceur-ws.org/Vol-1384/editorial.pdf">PDF</a></li>
<li class="text"> Atanassova, I., Bertin, M., & Mayr, P. (2015). <strong>Mining Scientific Papers for Bibliometrics: a (very) Brief Survey of Methods and Tools.</strong>. 15th International Society of Scientometrics and Informetrics Conference (ISSI2015). Istanbul, Turkey. <a href="http://arxiv.org/abs/1505.01393">Preprint pdf</a></li>
<li class="text"> Carevic, Z., Krichel, T., & Mayr, P. (2015). <strong>Assessing a human mediated current awareness service</strong>. In F. Pehar, C. Schlögl, & C. Wolff (Eds.), Proceedings ot the 14th International Symposium of Information Science (<a href="http://isi2015.de/">ISI 2015</a>) (pp. 166-177). Zadar, Croatia. <a href="http://arxiv.org/abs/1503.01082">Preprint pdf</a></li>
<li class="text"> Carevic, Z., & Mayr, P. (2015). <strong>Extending search facilities via bibliometric-enhanced stratagems</strong>. In BIR workshop 2015. Vienna, Austria. <a href="http://www.gesis.org/en/events/events-archive/conferences/ecirworkshop2015/"> BIR Workshop 2015</a>. <a href="http://ceur-ws.org/Vol-1344/paper5.pdf">PDF</a></li>
<li class="text"> Mayr, P., Frommholz, I., & Mutschke, P. (2015). <strong>Editorial for the 2nd Bibliometric-Enhanced Information Retrieval Workshop at ECIR 2015</strong>. In Proc. of the 2nd Workshop on Bibliometric-enhanced Information Retrieval (<a href="http://www.gesis.org/en/events/events-archive/conferences/ecirworkshop2015/">BIR2015</a>) (pp. 1-4). Vienna, Austria: CEUR-WS.org. <a href="http://ceur-ws.org/Vol-1344/editorial.pdf">PDF</a></li>
<li class="text"> Mayr, P., Frommholz, I., Scharnhorst, A., & Mutschke, P. (2015). <strong>Bibliometric-enhanced Information Retrieval: 2nd International BIR Workshop</strong>. 37th European Conference on IR Research, ECIR 2015. Vienna, Austria. <a href="papers/ecir2015.pdf">Preprint pdf</a> <a href="http://www.gesis.org/en/events/events-archive/conferences/ecirworkshop2015/"> BIR Workshop 2015</a>. <a href="http://link.springer.com/chapter/10.1007%2F978-3-319-16354-3_100">PDF</a></li>
<li class="text"> Mutschke, P., & Mayr, P. (2015). <strong>Science Models for Search. A Study on Combining Scholarly Information Retrieval and Scientometrics</strong>. Scientometrics, 102(3), 2323-2345. <a href="papers/Mutschke-Mayr-2015.pdf">Preprint</a> <a href="http://link.springer.com/article/10.1007/s11192-014-1485-2">PDF</a></li>
<li class="text"> Mayr, P., & Scharnhorst, A. (2015). <strong>Scientometrics and Information Retrieval - weak-links revitalized</strong>. Scientometrics, 102(3), 2193-2199. <a href="papers/Scientometrics_2015.pdf">Preprint pdf</a> <a href="http://link.springer.com/article/10.1007/s11192-014-1484-3">PDF</a></li>
<li class="text"> Mayr, P., & Scharnhorst, A. (2015). <strong>Combining bibliometrics and information retrieval: preface</strong>. Scientometrics, 102(3), 2191-2192. <a href="http://link.springer.com/article/10.1007/s11192-015-1529-2">PDF</a></li>
<li class="text"> Hienert, D., Sawitzki, F., & Mayr, P. (2015). <strong>Digital Library Research in Action - Supporting Information Retrieval in Sowiport</strong>. D-Lib Magazine, 21(3-4), March/April 2015. <a href="http://dlib.org/dlib/march15/hienert/03hienert.html">PDF</a></li>
<br>
<strong>2014</strong>
<li class="text"> Mutschke, P., Mayr, P., & Scharnhorst, A. (2014). <strong>Editorial for the Proceedings of the Workshop Knowledge Maps and Information Retrieval (KMIR2014) at Digital Libraries 2014</strong>. In <a href="http://ceur-ws.org/Vol-1311/">Proceedings of the First Workshop on Knowledge Maps and Information Retrieval </a> (pp. 1-6). London, United Kingdom: CEUR-WS.org. <a href="http://ceur-ws.org/Vol-1311/editorial.pdf">PDF</a></li>
<li class="text"> Mayr, P. (2014). <strong>Are topic-specific search term, journal name and author name recommendations relevant for researchers? </strong> In EuroHCIR workshop. London. <a href="http://arxiv.org/abs/1408.4440">Preprint pdf</a></li>
<li class="text"> Carevic, Z., & Mayr, P. (2014). <strong>Recommender Systems using Pennant Diagrams in Digital Libraries</strong>. In 13th European Networked Knowledge Organization Systems (NKOS) Workshop. London. <a href="http://arxiv.org/abs/1407.7276">PDF</a></li>
<li class="text"> Kern, D., Mutschke, P., & Mayr, P. (2014). <strong>IIRpanel -Online Access Panel for Interactive Information Retrieval Research.</strong> In T. Seidl, M. Hassani, & C. Beecks (Eds.), Proceedings of the LWA 2014 Workshops: KDML, IR, FGWM. Aachen, Germany. <a href="http://ceur-ws.org/Vol-1226/paper38.pdf">PDF</a></li>
<li class="text"> van Hoek, W., & Mayr, P. (2014). <strong>Is Evaluating Visual Search Interfaces in Digital Libraries Still an Issue? </strong> In T. Seidl, M. Hassani, & C. Beecks (Eds.), Proceedings of the LWA 2014 Workshops: KDML, IR, FGWM. Aachen, Germany. <a href="http://ceur-ws.org/Vol-1226/paper37.pdf">PDF</a></li>
<li class="text"> Kern, D., Mutschke, P., & Mayr, P. (2014). <strong>Establishing an Online Access Panel for Interactive Information Retrieval Research</strong>. In Digital Libraries 2014. ACM/IEEE Joint Conference on Digital Libraries (JCDL 2014) and International Conference on Theory and Practice of Digital Libraries (TPDL 2014). London: ACM. <a href="papers/DL2014.pdf">Preprint pdf</a> <a href="http://ieeexplore.ieee.org/xpl/articleDetails.jsp?arnumber=6970231">PDF</a></li>
<li class="text"> van Hoek, W., Shen, W., & Mayr, P. (2014). <strong>Identifying User Behavior in domain-specific Repositories</strong>. In 18th International Conference on Electronic Publishing (Elpub 2014). Thessaloniki, Greece. <a href="papers/elpub2014.pdf">Preprint pdf</a> <a href="https://elpub.architexturez.net/doc/oai-elpub-id-105-elpub2014">PDF</a></li>
<li class="text"> Haddou ou Moussa, K., Sondergeld, U., Mayr, P., Mutschke, P., & Rittberger, M. (2014). <strong>Assessing Educational Research - An Information Service for Monitoring a Heterogeneous Research Field</strong>. In LIDA 2014 conference proceedings. <a href="http://arxiv.org/abs/1405.6738">Preprint pdf</a> <a href="http://ozk.unizd.hr/proceedings/index.php/lida/article/view/166">PDF</a></li>
<li class="text"> Mayr, P., Schaer, P., Scharnhorst, A., & Mutschke, P. (2014). <strong>Editorial for the Bibliometric-enhanced Information Retrieval Workshop at ECIR 2014</strong>. In P. Mayr et al. (Ed.), Proceedings of the First Workshop on Bibliometric-enhanced Information Retrieval. Amsterdam: CEUR. <a href="http://ceur-ws.org/Vol-1143/editorial.pdf">PDF</a></li>
<li class="text"> Mayr, P., Scharnhorst, A., Larsen, B., Schaer, P., & Mutschke, P. (2014). <strong>Bibliometric-enhanced Information Retrieval</strong>. In M. De Rijke (Ed.), Proceedings of the 36th European Conference on Information Retrieval (ECIR 2014). Amsterdam: Springer. <a href="http://arxiv.org/abs/1310.8226">Preprint pdf</a> <a href="http://link.springer.com/chapter/10.1007%2F978-3-319-06028-6_99">PDF</a></li>
<li class="text"> van Hoek, W., & Mayr, P. (2014). <strong>Assessing Visualization Techniques for the Search Process in Digital Libraries</strong>. In Stefan Andreas Keller, R. Schneider, & B. Volk (Eds.), Wissensorganisation mit digitalen Technologien. DeGruyter. <a href="papers/vanHoek-Mayr-2013.pdf">Preprint pdf</a> <a href="http://www.degruyter.com/view/books/9783110312812/9783110312812.63/9783110312812.63.xml">PDF</a></li>
<li class="text"> Kaczmirek, L., Mayr, P., Vatrapu, R., Bleier, A., Blumenberg, M., Gummer, T., Hussain, A., Kinder-Kurlanda, K., Manshaei, K., Thamm, M., Weller, K., Wenz, A. and Wolf, C. (2014). <strong>Social Media Monitoring of the Campaigns for the 2013 German Bundestag Elections on Facebook and Twitter</strong>. GESIS Working papers (Nr. 31). <a href="http://arxiv.org/abs/1312.4476">Preprint pdf</a> <a href="http://www.gesis.org/fileadmin/upload/forschung/publikationen/gesis_reihen/gesis_arbeitsberichte/WorkingPapers_2014-31.pdf">PDF</a></li>
<br>
<strong>2013</strong>
<li class="text"> Mayr, P., & Mutschke, P. (2013). <strong>Bibliometric-enhanced Retrieval Models for Big Scholarly Information Systems</strong>. IEEE International Conference on Big Data (<a href="http://cci.drexel.edu/bigdata/bigdata2013/">IEEE BigData 2013</a>). Workshop on Scholarly Big Data: Santa Clara, USA: <a href="http://arxiv.org/abs/1309.7949">Preprint</a> <a href="https://doi.org/10.1109/BigData.2013.6691762">PDF</a></li>
<li class="text"> Lüke, T., Schaer, P., & Mayr, P. (2013). <strong>A Framework for Specific Term Recommendation Systems</strong>. In Proceedings of the 36th international ACM SIGIR conference on Research and development in information retrieval - SIGIR '13 (pp. 1093-1094). New York, USA: ACM. <a href="papers/sigir13-lueke.pdf">Preprint</a> <a href="http://dl.acm.org/citation.cfm?doid=2484028.2484207">PDF</a></li>
<li class="text"> Mayr, P. (2013). <strong>Relevance distributions across Bradford Zones: Can Bradfordizing improve search?</strong>. In J. Gorraiz, E. Schiebel, C. Gumpenberger, M. Hörlesberger, & H. Moed (Eds.), <a href="http://www.issi2013.org">14th International Society of Scientometrics and Informetrics Conference</a> (pp. 1493-1505). Wien. <a href="papers/Mayr-ISSI2013.pdf">Preprint</a></li>
<li class="text"> Zapilko, B., Schaible, J., Mayr, P., & Mathiak, B. (2013). <strong>TheSoz: A SKOS Representation of the Thesaurus for the Social Sciences.</strong> Semantic Web journal (SWJ), 4(3), 257-263. <a href="http://www.semantic-web-journal.net/content/thesoz-skos-representation-thesaurus-social-sciences">Preprint pdf</a> <a href="http://dx.doi.org/10.3233/SW-2012-0081">PDF</a></li>
<li class="text"> Zens, M., Sawitzki, F., & Mayr, P. (2013): <strong>Suchunterstützung in akademischen Suchmaschinen</strong>. In D. Lewandowski (Ed.), Handbuch Internet-Suchmaschinen, Band 3. (pp. 195-221). Akademische Verlagsgesellschaft Aka. <a href="papers/zens_et_al-2013.pdf">Preprint pdf</a></li>
<li class="text"> Schaer, P., Lüke, T., Mayr, P., & Mutschke, P. (2013): <strong>An OAI-PMH-based Web-Service for the Generation of Co-Author-Networks</strong>. ISI 2013. <a href="papers/ISI2013-Schaer_etal.pdf">Preprint pdf</a></li>
<li class="text"> Sawitzki, F., Zens, M., & Mayr, P. (2013): <strong>Referenzen und Zitationen zur Unterstützung der Suche in SOWIPORT</strong>. ISI 2013. <a href="papers/ISI2013-Sawitzki_etal.pdf">Preprint pdf</a></li>
<li class="text"> Schomisch, Siegfried; Zens, Maria; Mayr, Philipp (2013): <strong>Are e-readers suitable tools for scholarly work?</strong> Online Information Review, 37(3), 388-404. <a href="http://arxiv.org/abs/1205.1227">Preprint pdf</a> <a href="http://www.emeraldinsight.com/10.1108/OIR-12-2011-0221">PDF</a> </li>
<li class="text">Mayr, Philipp; Mutschke, Peter; Schaer, Philipp; Sure, York (2013): <strong>Mehrwertdienste für das Information Retrieval: das Projekt IRM</strong>. In: Wissen - Wissenschaft - Organisation: Ergon-Verlag. (International Society for Knowledge Organization (ISKO) German Chapter). <a href="papers/Mayr-etal-2013.pdf">PDF</a></li>
<br>
<strong>2012</strong>
<br>
<li class="text"> Schaible, J., & Mayr, P. (2012). <strong>Discovering links for metadata enrichment on computer science papers.</strong> GESIS-Technical Reports 2012-10. Köln. <a href="http://www.gesis.org/fileadmin/upload/forschung/publikationen/gesis_reihen/gesis_methodenberichte/2012/TechnicalReport_2012-10.pdf">PDF</a> </li>
<li class="text"> Hienert, D., & Mayr, P. (2012). <strong>Visualizations in Exploratory Search - A User Study with Stock Market Information.</strong> Special Track on Theory and Applications of Visual Analytics of the i-Know 2012. <a href="http://arxiv.org/abs/1209.2244">Preprint pdf</a> <a href="http://dl.acm.org/citation.cfm?id=2362456.2362488">PDF</a></li>
<li class="text"> Lüke, T., Schaer, P., & Mayr, P. (2012). <strong>Improving Retrieval Results with discipline-specific Query Expansion.</strong> International Conference on Theory and Practice of Digital Libraries (TPDL 2012)(pp. 408–413). Paphos, Cyprus: Springer Berlin Heidelberg. <a href="http://arxiv.org/abs/1206.2126">Preprint pdf</a> <a href="http://dx.doi.org/10.1007/978-3-642-33290-6_44">PDF</a></li>
<li class="text"> Schaer, P., Mayr, P., & Lüke, T. (2012). <strong>Extending Term Suggestion with Author Names.</strong> International Conference on Theory and Practice of Digital Libraries (TPDL 2012) (pp. 317–322). Paphos, Cyprus: Springer Berlin Heidelberg. <a href="http://arxiv.org/abs/1206.2123">Preprint pdf</a> <a href="http://dx.doi.org/10.1007/978-3-642-33290-6_34">PDF</a></li>
<li class="text"> Hienert, Daniel; Sawitzki, Frank; Schaer, Philipp; Mayr, Philipp (2012): <strong>Integrating Interactive Visualizations in the Search Process of Digital Libraries and IR Systems</strong>. Proceedings of the 34th European Conference on Information Retrieval (ECIR 2012) <a href="http://arxiv.org/ftp/arxiv/papers/1201/1201.2515.pdf">Preprint pdf</a> <a href="http://dx.doi.org/10.1007/978-3-642-28997-2_38">PDF</a></li>
<li class="text"> Haddou ou Moussa, Karima; Mayr, Philipp (2012): <strong>Automatische Referenzextraktion mit PARSCIT</strong>. Proceedings of DGI 2012 <a href="papers/DGI2012.pdf">Preprint pdf</a> </li>
<li class="text"> Reichert, Stefanie; Mayr, Philipp (2012): <strong>Untersuchung von Relevanzeigenschaften in einem kontrollierten Eyetracking-Experiment</strong>. Information - Wissenschaft und Praxis, 63(3), 145–156. <a href="papers/iwp-2012.pdf">Preprint pdf</a> <a href="http://dx.doi.org/10.1515/iwp-2012-0029">PDF</a> </li>
<br>
<strong>2011</strong>
<br>
<li class="text"> Mayr, Philipp (2011): <strong>Report on the 10th European Networked Knowledge Organization Systems/Services (NKOS) Workshop</strong>. D-Lib Magazine 17 (11/12) <a href="http://www.dlib.org/dlib/november11/mayr/11mayr.html">html</a></li>
<li class="text"> Hienert, Daniel; Schaer, Philipp; Schaible, Johann; Mayr, Philipp (2011): <strong>A Novel Combined Term Suggestion Service for Domain-Specific Digital Libraries</strong>. TPDL 2011. <a href="papers/TPDL2011.pdf">Preprint pdf</a> <a href="http://dx.doi.org/doi:10.1007/978-3-642-24469-8_21">PDF</a></li>
<li class="text"> Mutschke, Peter; Mayr, Philipp; Schaer, Philipp; Sure, York (2011): <strong>Science Models as Value-Added Services for Scholarly Information Systems</strong>. In: Scientometrics, 89(1), 349–364. <a href="papers/Scientometrics_2011.pdf">Preprint pdf</a> <a href="http://dx.doi.org/doi:10.1007/s11192-011-0430-x">PDF</a></li>
<li class="text">Thamm, Mark; Mayr, Philipp (2011). <strong>Comparing webometric with web-independent rankings: a case study with German universities</strong>. <a href="http://www.websci11.org">ACM Web Science 2011</a>. <a href="https://arxiv.org/ftp/arxiv/papers/1105/1105.2443.pdf">Preprint pdf</a></li>
<li class="text">Mayr, Philipp; Schaer, Philipp; Mutschke, Peter (2011): <strong>A Science Model Driven Retrieval Prototype</strong>. Proceedings for Concepts in Context. <a href="papers/CISKO2010_Mayr.pdf">Preprint pdf </a></li>
<li class="text">Mayr, Philipp; Mutschke, Peter; Petras, Vivien; Schaer, Philipp; Sure, York (2011): <strong>Applying Science Models for Search</strong>. ISI 2011. <a href="https://arxiv.org/ftp/arxiv/papers/1101/1101.1639.pdf">Preprint pdf</a> </li>
<li class="text">Mayr, Philipp (2011): <strong>Bradfordizing als Re-Ranking-Ansatz in Literaturinformationssystemen</strong>. IWP. <a href="papers/Mayr-IWP11.pdf">Preprint pdf</a></li>
<br>
<strong>2010</strong>
<br>
<li class="text"> Mayr, Philipp (2010): <strong>Information Retrieval-Mehrwertdienste für Digitale Bibliotheken: Crosskonkordanzen und Bradfordizing</strong>. GESIS-Schriftenreihe, Bd. 5. Bonn. 270 S. <a href="https://www.ssoar.info/ssoar/handle/document/26122">Link</a></li>
<li class="text">Koch, Ute; Schomisch, Siegfried; Shen, Wei; Zens, Maria; Mayr, Philipp (2010): <strong>eBooks für Fachwissenschaftler. Ein Testbericht zu aktuellen E-Readern</strong>. In: WissKom2010. <a href="http://www.ssoar.info/ssoar/handle/document/45657">Preprint pdf</a></li>
<li class="text">Schaer, Philipp; Mayr, Philipp; Mutschke, Peter (2010): <strong>Implications of Inter-Rater Agreement on a Student Information Retrieval Evaluation</strong>. In: LWA 2010. Kassel. <a href="http://www.kde.cs.uni-kassel.de/conf/lwa10/papers/ir8.pdf">PDF</a></li>
<li class="text">Schaer, Philipp; Mayr, Philipp; Mutschke, Peter (2010): <strong>Demonstrating a Service-Enhanced Retrieval System</strong>. In: ASIST 2010. Pittsburgh. <a href="http://arxiv.org/ftp/arxiv/papers/1009/1009.5003.pdf">PDF</a></li>
<li class="text">Mayr, Philipp; Zapilko, Benjamin; Sure, York (2010): <strong>Establishing a Multi-Thesauri-Scenario based on SKOS and Cross-Concordances</strong>. In: Int. Conf. on Dublin Core and Metadata Applications 2010. <a href="http://arxiv.org/ftp/arxiv/papers/1009/1009.5352.pdf">PDF</a></li>
<li class="text">Wira-Alam, Andias; Zapilko, Benjamin; Mayr, Philipp (2010): <strong>An Experimental Approach for Collecting Snippets Describing the Relations between Wikipedia Articles</strong>. Web Science Conference 2010. <a href="papers/Wira-Alam-2010.pdf">PDF</a></li>
<li class="text"> Mayr, Philipp; Zapilko, Benjamin; Sure, York (2010): <strong>Ein Mehr-Thesauri-Szenario auf Basis von SKOS und Crosskonkordanzen</strong>. 25. Oberhofer Kolloquium: Recherche im Google-Zeitalter: vollständig und präzise?!. <a href="http://www.ssoar.info/ssoar/handle/document/46288">PDF</a> </li>
<li class="text"> Mayr, Philipp (2010): <strong>Bradfordizing mit Katalogdaten</strong>. In: BuB - Forum Bibliothek und Information. 62, No. 1, pp. 61-63. <a href="papers/BuB2010.pdf">PDF</a> </li>
<br>
<strong>2009</strong>
<br>
<li class="text">Mayr, Philipp (2009): <strong>Re-Ranking auf Basis von Bradfordizing für die verteilte Suche in Digitalen Bibliotheken</strong>. Dissertation. Philosophische Fakultät I, Institut für Bibliotheks- und Informationswissenschaft. Humboldt-Universität zu Berlin. 237 Seiten. <a href="http://edoc.hu-berlin.de/dissertationen/mayr-philipp-2009-02-18/PDF/mayr.pdf">PDF</a> [2.9 mb]</li>
<li class="text"> Mayr, Philipp (2009): <strong>Google Scholar: Warum eine (akademische) Suchmaschine nicht ausreicht</strong>. In: Wissenschaftsmanagement. 15 (2009) 3. pp. 43-45. <a href="papers/GS-WM09.pdf">Preprint pdf</a> </li>
<li class="text"> Mayr, Philipp (2009): <strong>Google Scholar als akademische Suchmaschine</strong>. In: VÖB-Mitteilungen. 62 (2009) 2, pp. 18-28. <a href="papers/mayr-voeb2009.pdf">PDF</a> </li>
<li class="text"> Mayr, Philipp (2009): <strong>Bradfordizing effects</strong>. pp. 451-456. In: Kuhlen, Rainer (ed.) Information: Droge, Ware oder Commons? Proceedings des 11. Internationalen Symposiums für Informationswissenschaft (ISI 2009). Konstanz: vwh Verlag Werner Hülsbusch. <a href="papers/ISI_2009.pdf">Preprint pdf</a> </li>
<br>
<strong>2008</strong>
<br>
<li class="text"> Mayr, Philipp; Umstätter, Walther (2008): <strong>Eine bibliometrische Zeitschriftenanalyse zu JoI, Scientometrics und NfD bzw. IWP</strong>. In: Information - Wissenschaft & Praxis. 59 (2008) 6-7. <a href="http://www.ssoar.info/ssoar/handle/document/54665">PDF</a> </li>
<li class="text"> Mayr, Philipp (2008): <strong>An evaluation of Bradfordizing effects</strong>. In: H. Kretschmer; F. Havemann (eds.): Proceedings of WIS 2008, Berlin, <a href="http://www.collnet-berlin.de/">Fourth International Conference on Webometrics, Informetrics and Scientometrics & Ninth COLLNET Meeting</a>, Humboldt-Universität zu Berlin. <a href="http://www.collnet.de/Berlin-2008/MayrWIS2008ebe.pdf">PDF</a> . <br />
<em>Reprinted in</em>: Collnet Journal of Scientometrics and Information Management. 2 (2008) 2. pp. 21-27.</li>
<li class="text"> Lauser, Boris; Johannsen, Gudrun; Caracciolo, Caterina; Keizer, Johannes; Hage, Willem Robert van; Mayr, Philipp (2008): <strong>Comparing human and automatic thesaurus mapping approaches in the agricultural domain</strong>. pp. 43-53. In: Greenberg, Jane; Klas, Wolfgang (eds.): International Conference on Dublin Core and Metadata Applications (DC 2008). Berlin: Dublin Core Metadata Initiative. <a href="http://dx.doi.org/10.18452/1251">PDF</a></li>
<li class="text"> Mayr, Philipp; Petras, Vivien (2008): <strong>Building a terminology network for search: the KoMoHe project</strong>. pp. 177-182. In: Greenberg, Jane; Klas, Wolfgang (eds.): International Conference on Dublin Core and Metadata Applications (DC 2008). Berlin: Dublin Core Metadata Initiative. <a href="http://dx.doi.org/10.18452/1264">PDF</a></li>
<li class="text"> Mayr, Philipp; Petras, Vivien (2008): <strong>Cross-concordances: terminology mapping and its effectiveness for information retrieval</strong>. In: <a href="http://www.ifla.org/IV/ifla74/index.htm">74th IFLA World Library and Information Congress</a>. Québec, Canada. <a href="http://www.ifla.org/IV/ifla74/papers/129-Mayr_Petras-trans-de.pdf">deutsche Version</a>, <a href="http://www.ifla.org/IV/ifla74/papers/129-Mayr_Petras-trans-fr.pdf">französische Übersetzung</a>, <a href="http://www.ifla.org/IV/ifla74/papers/129-Mayr_Petras-trans-zh.pdf">chinesische Übersetzung</a>, <a href="http://www.ifla.org/IV/ifla74/papers/129-Mayr_Petras-en.pdf">PDF</a> <br />
<em>Reprinted in</em>: International Cataloguing and Bibliographic Control 38, No. 3, pp. 43-52.</li>
<li class="text"> Tosques, Fabio; Mayr, Philipp (2008): <strong>Programmierschnittstellen der kommerziellen Suchmaschinen</strong>. pp. 116-147. In: Lewandowski, Dirk (ed.): Handbuch Internet-Suchmaschinen. Heidelberg: Akademische Verlagsanstalt AKA. <a href="http://www.ssoar.info/ssoar/handle/document/46377">Preprint pdf</a> [1.2 mb]</li>
<li class="text"> Mayr, Philipp; Walter, Anne-Kathrin (2008): <strong>Studying Journal Coverage in Google Scholar</strong>. In: Miller, William; Pellen, Rita M. (eds.): Googlization of Libraries. Binghamton, NY: Haworth Press. <br />
<em>Reprinted in</em>: Journal of Library Administration 47, No. 1-2, pp. 81-100.</li>
<li class="text"> Mayr, Philipp; Mutschke, Peter; Petras, Vivien (2008): <strong>Reducing semantic complexity in distributed Digital Libraries: treatment of term vagueness and document re-ranking</strong>. In: Library Review. 57 (2008) 3. pp. 213-224. Special Issue on Digital libraries and the Semantic Web: context, applications and research</a>'. <a href="http://www.ssoar.info/ssoar/handle/document/44164">PDF</a> </li>
<li class="text">Mayr, Philipp; Plassmann, Engelbert (2008): <strong>Die Pracht der Bücherhäuser</strong>. In: BuB - Forum Bibliothek und Information. Nr. 4. </li>
<li class="text"> Mayr, Philipp; Walter, Anne-Kathrin (2008): <strong>Mapping Knowledge Organization Systems</strong>. pp. 80-95. In: Fortschritte der Wissenorganisation, Band 10 (Advances in Knowledge Organization, Vol. 10 - Supplement): Kompatibilität, Medien und Ethik in der Wissensorganisation (Compatibility, Media and Ethics in Knowledge Organization). Ergon Verlag. <a href="http://www.ssoar.info/ssoar/handle/document/45656">PDF</a> </li>
<br>
<strong>2007</strong>
<br>
<li class="text"> Mayr, Philipp (2007): <strong>Integrität und Integration von elektronischen Publikationen - Modellüberlegungen im Umfeld der Digitalen Bibliothek</strong>. pp. 107-119. In: Havemann, Frank; Parthey, Heinrich; Umstätter, Walther (Hrsg.): Integrität wissenschaftlicher Publikationen in der Digitalen Bibliothek: Wissenschaftsforschung Jahrbuch 2007. Berlin: Gesellschaft für Wissenschaftsforschung. <a href="http://dx.doi.org/10.18452/5401">PDF</a> </li>
<li class="text"> Mayr, Philipp; Walter, Anne-Kathrin (2007): <strong>An exploratory study of Google Scholar</strong>. In: Online Information Review. 31 (2007) 6. pp. 814-830. <a href="http://www.ssoar.info/ssoar/handle/document/44137">PDF</a> </li>
<li class="text"> Mayr, Philipp; Walter, Anne-Kathrin (2007): <strong>Einsatzmöglichkeiten von Crosskonkordanzen</strong>. pp. 149-166. In: Stempfhuber, Maximilian (Hrsg.): Lokal - Global: Vernetzung wissenschaftlicher Infrastrukturen: 12. Kongress der IuK-Initiative der Wissenschaftlichen Fachgesellschaft in Deutschland. Bonn: GESIS - IZ Sozialwissenschaften. (Tagungsberichte). </li>
<li class="text"> Mayr, Philipp; Walter, Anne-Kathrin (2007): <strong>Zum Stand der Heterogenitätsbehandlung in vascoda: Bestandsaufnahme und Ausblick</strong>. pp. 704-716. In: Lison, Barbara (Hrsg.): Information und Ethik. 3. Leipziger Kongress für Information und Bibliothek, 19. - 22. März 2007. Leipzig: Verlag Dinges & Frick. <a href="http://www.opus-bayern.de/bib-info/volltexte/2007/290/">Preprint</a></li>
<li class="text"> Mayr, Philipp; Umstätter, Walther (2007): <strong>Why is a new Journal of Informetrics needed?</strong> In: Cybermetrics. 11 (2007) 1. <a href="https://arxiv.org/ftp/cs/papers/0701/0701104.pdf">Preprint pdf</a> </li>
<br>
<strong>2006</strong>
<br>
<li class="text">Krause, Jürgen; Mayr, Philipp (2006). <strong>Allgemeiner
Bibliothekszugang und Varianten der Suchtypologie - Konsequenzen für
die Modellbildung in vascoda</strong>. Bonn: IZ Sozialwissenschaften.
52 S. (IZ-Arbeitsbericht; Nr. 38). <a href="http://www.gesis.org/fileadmin/upload/forschung/publikationen/gesis_reihen/iz_arbeitsberichte/ab_38.pdf">PDF</a>
</li>
<li class="text">Lewandowski, Dirk; Mayr, Philipp (2006): <strong>Exploring
the academic invisible web</strong>. In: Library Hi Tech. 24 (2006)
4. pp. 529-539, Special Issue on Academic
information services: new paradigms. <a href="https://arxiv.org/ftp/cs/papers/0702/0702103.pdf">Preprint
pdf</a> <a href="http://www.ssoar.info/ssoar/handle/document/44136">PDF</a>
</li>
<li class="text"> Mayr, Philipp (2006): <strong>Thesauri, Klassifikationen
& Co – die Renaissance der kontrollierten Vokabulare?</strong>
pp. 151-170. In: Hauke, Petra; Umlauf, Konrad (Hrsg.): Vom Wandel der
Wissensorganisation im Informationszeitalter. <a href="http://edoc.hu-berlin.de/miscellanies/umstaetter/">Festschrift
für Walther Umstätter</a> zum 65. Geburtstag. Bad Honnef:
Bock + Herchen Verlag. (Beiträge zur Bibliotheks- und Informationswissenschaft;
Band 1). <a href="http://edoc.hu-berlin.de/docviews/abstract.php?lang=ger&id=27544">Abstract</a>,
<a href="http://edoc.hu-berlin.de/miscellanies/vom-27533/151/PDF/151.pdf">PDF</a>
<a href="http://edoc.hu-berlin.de/miscellanies/festschrift-27533/151/HTML/">html</a> </li>
<li class="text"> Mayr, Philipp (2006): <strong>Constructing experimental
indicators for Open Access documents</strong>. In: Research Evaluation.
15 (2006) 2. pp. 127-132, Special Issue on 'Web
indicators for Innovation Systems'. <a href="https://arxiv.org/ftp/cs/papers/0610/0610056.pdf">Preprint
pdf</a> <a href="https://doi.org/10.3152/147154406781775940">PDF</a> </li>
<li class="text">Mayr, Philipp; Walter, Anne-Kathrin (2006): <strong>Abdeckung
und Aktualität des Suchdienstes Google Scholar</strong>. In: Information:
Wissenschaft und Praxis. 57 (2006) 3. <a href="papers/IWP_3_06_MayrWalter.pdf">PDF</a> </li>
<li class="text">Mayr, Philipp (2006): <strong>10th International Conference
of the International Society for Scientometrics and Informetrics</strong>.
Ein Konferenzbericht. In: LIBREAS.
(2006) 5. </li>
<li class="text">Mayr, Philipp (2006). <strong>Informationsangebote für
das Wissenschaftsportal vascoda - eine Bestandsaufnahme</strong>. Bonn:
IZ Sozialwissenschaften. 67 S. (IZ-Arbeitsbericht; Nr. 37). <a href="http://www.gesis.org/fileadmin/upload/forschung/publikationen/gesis_reihen/iz_arbeitsberichte/ab_37.pdf">PDF</a> </li>
<li class="text">Mayr, Philipp; Walter, Anne-Kathrin (2006). <strong>Google
Scholar - Wie tief gräbt diese Suchmaschine?</strong> - In
die Zukunft publizieren: Herausforderungen an das Publizieren und
die Informationsversorgung in den Wissenschaften; 11. IuK-Jahrestagung,
Bonn, 09. - 11. Mai 2005. </li>
<li class="text">Walter, Anne-Kathrin; Mayr, Philipp; Stempfhuber, Maximilian;
Ballay, Arne (2006). <strong>Crosskonkordanzen als Mittel der Heterogenitätsbehandlung
in infoconnex </strong>- In die Zukunft publizieren: Herausforderungen an das Publizieren und die Informationsversorgung in den Wissenschaften; 11. IuK-Jahrestagung,
Bonn, 09. - 11. Mai 2005.</li>
<br>
<strong>2005</strong>
<br>
<li class="text">Mayr, Philipp; Nançoz, Christian (2005). <strong>Makro-
und Mikro-Mining am Beispiel von Webserver Logfiles</strong> - Proceedings Knowledge eXtended</a>: Die Kooperation von Wissenschaftlern, Bibliothekaren und
IT-Spezialisten, Jülich, 02. - 04. November 2005. <a href="papers/mayr_nancoz_kx05.pdf">Preprint
pdf</a> <br />
engl. title: Macro- and Micro-Mining: Web server log file examples.</li>
<li class="text">Plassmann, Engelbert; Mayr, Philipp (2005). <strong>Das
Buch und sein Haus - ein Digitalisierungsprojekt am Institut für
Bibliothekswissenschaft</strong>. In: B.I.T.online 8 (2005) Nr. 3, <a href="papers/plassmann-mayr_bitonline05.pdf">Preprint
pdf</a> </li>
<li class="text">Mayr, Philipp; Tosques, Fabio (2005). <strong>Google
Web APIs - An instrument for webometric analyses?</strong> pp. 677-678. In: Ingwersen, Peter; Larsen, Birger (eds.): 10th International Conference of the International Society for Scientometrics and Informetrics. Stockholm (Sweden) (ISSI
2005). <a href="https://arxiv.org/ftp/cs/papers/0601/0601103.pdf">Preprint
pdf</a> </li>
<li class="text">Mayr, Philipp; Stempfhuber, Maximilian; Walter, Anne-Kathrin
(2005). <strong>Auf dem Weg zum wissenschaftlichen Fachportal –
Modellbildung und Integration heterogener Informationssammlungen</strong>.
Proceedings der 27. DGI-Online-Tagung in Frankfurt am Main, <a href="papers/mayr_etal_dgi05.pdf">PDF</a>
</li>
<li class="text">Tosques, Fabio; Mayr, Philipp (2005). <strong>Web Services
- Einsatzmöglichkeiten für das Information Retrieval im WWW</strong>.
Proceedings der 27. DGI-Online-Tagung in Frankfurt am Main, <a href="papers/tosques_mayr_dgi05.pdf">Preprint
pdf</a> </li>
<li class="text">Mayr, Philipp; Tosques, Fabio (2005): <strong>Webometrische
Analysen mit Hilfe der Google Web APIs</strong>. In: Information: Wissenschaft
und Praxis 56(1), 2005, S. 41-48. <a href="papers/IWP_1_05_Mayr_Tosques.pdf">PDF</a>
</li>
<br>
<strong>2004</strong>
<br>
<li class="text"> Mayr, Philipp (2004). <strong>Website entries from a
web log file perspective - a new log file measure</strong>, Proceedings
of the AoIR-ASIST 2004 Workshop on Web Science Research Methods, <a href="http://cybermetrics.wlv.ac.uk/AoIRASIST/mayr.html">http://cybermetrics.wlv.ac.uk/AoIRASIST/mayr.html</a>. </li>
<li class="text"><strong>Entwicklung und Test einer logfilebasierten
Metrik zur Analyse von Website Entries am Beispiel einer akademischen
Universitäts-Website</strong> / von Philipp Mayr. Berlin : Institut
für Bibliothekswissenschaft der Humboldt-Universität zu Berlin,
2004, 106 S. - (Berliner Handreichungen zur Bibliothekswissenschaft
und Bibliothekarsausbildung ; 129), available: <a href="http://www.ib.hu-berlin.de/%7Ekumlau/handreichungen/h129/">http://www.ib.hu-berlin.de/~kumlau/handreichungen/h129/</a>, <a href="http://edoc.hu-berlin.de/series/berliner-handreichungen/2004-129/PDF/129.pdf">PDF</a> [1.0 mb]</li>
<li class="text"><strong>Metadaten im Intranet - lohnt der Aufwand</strong> / von Philipp Mayr. - in: Contentmanager.de, Online-Artikel, 2003, siehe auch Competence SITE</li>
<li class="text"><strong>Die Kostenfallen im Intranet und Extranet</strong> / von Torsten Heinrich, Philipp Mayr. - in: Contentmanager.de, Online-Artikel, 2003</li>
<li class="text"><strong>Den Gencode des Intranet-Erfolgs entschlüsseln</strong> / von Torsten
Heinrich, Philipp Mayr. - in: Contentmanager.de, Online-Artikel, 2002</li>
<li class="text"><strong>Das Dateiformat PDF im Web - eine
statistische Erhebung</strong> / von Philipp Mayr. - in: IWP - Information.
Wissenschaft und Praxis. Jg. 53 (2002), Heft 8, S. 475-481 <a href="papers/IWP2002.pdf">Eprint
pdf</a> <a href="papers/IWP2002.pdf">PDF</a> </li>
</ul>
<br><br>
<!-- start talks -->
<h2><a name="vort" id="vort"></a>Vorträge / Talks </h2></p> <span class="text">Selected talks on <a href="https://www.slideshare.net/Philipp_Mayr/">Slideshare</a></span>
<ul>
<li class="text"><strong>Suchen und Entdecken. Fachinformationen in und aus den Portalen sowiport und SSOAR.</strong>. by Zens, M. & Mayr, P. at <a href="http://www.ub.uni-koeln.de/bibliothek/veranstaltung/lvt/fobifach/">Fortbildungsveranstaltung für Fachreferent/-innen der Sozialwissenschaften</a>. Köln.</li>
<li class="text"><strong>Creation of custom KOS-based recommendation systems</strong>. by Lüke, T., Hoek, W. van, Schaer, P., & Mayr, P. at <a href="https://www.comp.glam.ac.uk/pages/research/hypermedia/nkos/nkos2012/proposal.html">NKOS 2012</a>. Paphos, Cyprus.</li>
<li class="text"><strong>Simple Semantic Enrichment of Scientific Papers in Social Sciences</strong>. by Garcia, A., Mayr, P., & Garcia, L. J. at <a href="http://swib.org/swib12/">SWIB 2012</a>. Cologne, Germany.</li>
<li class="text"><strong>Discovering links for metadata enrichment on computer science papers</strong>. by Schaible, J., & Mayr, P. at <a href="http://swib.org/swib12/">SWIB 2012</a>. Cologne, Germany.</li>
<li class="text"><strong>Theories of information seeking behavior: Anwendungsmöglichkeiten für die Suche heute</strong>. <a href="http://www.dgd.de/oberhofer.aspx">26. Oberhofer Kolloquium</a>. Vortrag am 10. November 2011.</li>
<li class="text"><strong>Comparing the accuracy of the semantic similarity provided by the Normalized Google Distance (NGD) and the Search Term Recommender (STR)</strong>. <a href="http://www.comp.glam.ac.uk/pages/research/hypermedia/nkos/nkos2011/">10th European NKOS Workshop at TPDL 2011</a>.</li>
<li class="text"><strong>Evaluating approaches to automatically match thesauri from different domains for Linked Open Data</strong>. <a href="http://www.comp.glam.ac.uk/pages/research/hypermedia/nkos/nkos2011/"> 10th European NKOS Workshop at TPDL 2011</a></li>
<li class="text"><strong>Search term recommendation and non-textual ranking evaluated</strong>. <a href="http://www.comp.glam.ac.uk/pages/research/hypermedia/nkos/nkos2010/programme.html">9th European NKOS Workshop at the 14th ECDL Conference</a>. <a href="talks/Mayr-etal_NKOS10.pdf">Presentation pdf</a></li>
<li class="text"><strong>Searching in a Multi-Thesauri-Scenario - experiences with SKOS and terminology mappings</strong>. <a href="http://linux2.fbi.fh-koeln.de/cisko2010/programm.html">Cologne Conference on Interoperability and Semantics in Knowledge Organization</a>. Vortrag am 20. Juli 2010. <a href="talks/cisko-2010.pdf">Presentation pdf</a></li>
<li class="text"><strong>Ein Mehr-Thesauri-Szenario auf Basis von SKOS und Crosskonkordanzen</strong>. <a href="http://www.dgd.de/oberhofer.aspx">25. Oberhofer Kolloquium</a>: Recherche im Google-Zeitalter: vollständig und präzise?!. Vortrag am 23. April 2010.</li>
<li class="text">Mayr, Philipp: <strong>Non-textual ranking in digital libraries</strong>. - Jour fixe ISE, <a href="http://www.iuw.h-da.de/">Hochschule Darmstadt</a>. Vortrag am 18.11.2009. <a href="talks/jourfixe-18-11-09.pdf">Presentation pdf</a></li>
<li class="text"><strong>Mehrwertdienste für das Information Retrieval: das Projekt IRM</strong>. - "Wissen - Wissenschaft – Organisation" <a href="http://isko.gesis.org/isko2009/?id=9">12. Tagung der Deutschen ISKO</a> (International Society for Knowledge Organization), Bonn 2009. <a href="talks/ISKO09_Mayr-etal.pdf">Presentation pdf</a></li>
<li class="text"><strong>Value-Added Services for Scholarly Information Systems: the IRM project</strong>, (7.10.2009). - Workshop "<a href="http://modelling-science.simshelf.virtualknowledgestudio.nl/content/welcome">Modelling science – Understanding, forecasting, and communicating the science system</a>", Amsterdam</li>
<li class="text"><strong>Intra- and interdisciplinary cross-concordance for information retrieval</strong>, (1.10.2009). - 8th European Networked Knowledge Organization Systems (<a href="http://www.comp.glam.ac.uk/pages/research/hypermedia/nkos/nkos2009/">NKOS</a>) Workshop, Corfu, Greece. <a href="talks/Mayr-NKOS09.pdf">Presentation pdf</a></li>
<li class="text"><strong>Das Buch und sein Haus</strong>. Informationswissenschaftliches Kolloquium. <a href="http://www.fbi.fh-koeln.de/">Institut für Informationswissenschaft</a>. Fachhochschule Köln. Vortrag am 09. Juni 2009. <a href="talks/koeln-9.6.2009.pdf">Presentation pdf</a> [6.7 mb]</li>
<li class="text"><strong>Bradfordizing effects</strong>. <a href="http://www.isi2009.de/">11. Internationales Symposium für Informationswissenschaft</a>. Universität Konstanz. Vortrag am 02. April 2009.</li>
<li class="text"><strong>Bradfordizing als alternativer Sacheinstieg: Evaluation thematischer Kernzonenbildung</strong>. Jahrestagung der Gesellschaft für Klassifikation (<a href="http://www.gfkl.org/">GFKL</a>), <a href="http://www.gfkl.org/modules.php?op=modload&name=News&file=article&sid=106">AG BIB</a>. Technische Universität Dresden. Vortrag am 18. März 2009. <a href="talks/mayr-GFKL09.pdf">Presentation pdf</a></li>
<li class="text"><strong>Bradfordizing, Relevance and Information Retrieval</strong>. <a href="http://cybermetrics.wlv.ac.uk/workshopJan2009.html">Webometrics Workshop 2009</a>. University of Wolverhampton, UK. Statistical Cybermetrics Research Group. 22. January.</li>
<li class="text"><strong>Comparing human and automatic thesaurus mapping approaches in the agricultural domain</strong>. International Conference on Dublin Core and Metadata Applications. 23. September 2008. <a href="http://dc2008.de/wp-content/uploads/2008/09/lauser-johannsen-caracciolo-keizer-vanhage-mayr.pdf">Presentation pdf</a></li>
<li class="text"> <strong>Building a terminology network for search: the KoMoHe project</strong>. International Conference on Dublin Core and Metadata Applications. 25. September 2008. <a href="http://dc2008.de/wp-content/uploads/2008/09/mayr-petras.pdf">Presentation pdf</a></li>
<li class="text"><strong>An evaluation of Bradfordizing effects in multiple social science databases</strong>. <a href="http://www.rc332008.unina.it/">ISA-RC33</a> 7th International Conference on Social Science Methodology. Session: 'Information and Evaluation'. 1. - 5. September 2008, Naples, Italy. </li>
<li class="text"><strong>Terminology for Information Retrieval</strong>. Meeting at the Italian chapter of ISKO and IWA. <a href="http://www.iskoi.org/doc/web.htm">Knowledge organization on the Web</a>. 5. September 2008, Naples, Italy. </li>
<li class="text"><strong>Cross-concordances: terminology mapping and its effectiveness for information retrieval</strong>. Vortrag mit Vivien Petras, <a href="http://www.ifla.org/IV/ifla74/index.htm">74th IFLA Conference</a>, Section on Classification and Indexing, 10-14 August 2008, Quebec, Canada. <a href="http://www.ifla.org/IV/ifla74/papers/129-Mayr_Petras-en.pdf">Paper pdf</a>, <a href="http://www.ifla.org/IV/ifla74/papers/129-Mayr_Petras-trans-de.pdf">deutsche Version pdf</a>.</li>
<li class="text"><strong>An evaluation of Bradfordizing effects</strong>. 4th International Conference on Webometrics, Informetrics and Scientometrics & <a href="http://www.collnet-berlin.de/">9th COLLNET Meeting</a>. 29 July - 1 August 2008, Berlin.</li>
<li class="text"><strong>Thesauri und kontrollierte Vokabulare für das Information Retrieval</strong>. Lehrveranstaltung an der Hochschule Anhalt (FH), Fachbereich Informatik. <a href="http://www.inf.hs-anhalt.de/Master/master_im.htm">Masterstudiengang Informationsmanagement</a>. 08. - 10. Juli 2008, Köthen (Anhalt). </li>
<li class="text"><strong>Evaluation von Bradfordizing-Effekten in Digitalen Bibliotheken</strong>. <a href="http://promowiki.dipf.de/kolloquium/index.php/Hauptseite">Doktorandentreffen der Informationswissenschaft</a>. 12.-13. Juni 2008, Berlin. (Organisiert vom <a href="http://www.dipf.de/">Deutschen Institut für Internationale Pädagogische Forschung</a>).</li>
<li class="text"><strong>Results from a German terminology mapping effort: intra- and interdisciplinary cross-concordances between controlled vocabularies</strong>. Vortrag mit Vivien Petras und Anne-Kathrin Walter am 21.09.2007, 6th European Networked Knowledge Organization Systems (NKOS) Workshop at the 11th ECDL Conference, 2007 (<a href="http://www.comp.glam.ac.uk/pages/research/hypermedia/nkos/nkos2007/programme.html">NKOS 2007</a>),
Budapest, Hungary. <a href="http://www.comp.glam.ac.uk/pages/research/hypermedia/nkos/nkos2007/papers/mayr.pdf">Abstract pdf</a>, <a href="talks/nkos2007-komohe.pdf">Presentation pdf</a> [325 kb]</li>
<li class="text"><strong>Applying Bradford’s Law of Scattering in
Digital Libraries</strong>. Vortrag am 24.06.2007, Doctoral Forum, 11th
International Conference of the International Society for Scientometrics
and Informetrics (<a href="http://issi2007.cindoc.csic.es/">ISSI 2007</a>),
Madrid. </li>
<li class="text"><strong> </strong><strong>Abdeckung und Aktualität
des Suchdienstes Google Scholar</strong>. Vortrag mit Anne-Kathrin Walter
am 21.06.2007, Workshop der Stiftung Wissenschaft und Politik, Berlin.</li>
<li class="text"><strong> </strong><strong>Zum Stand der Crosskonkordanzen
in vascoda</strong>. Vortrag mit Anne-Kathrin Walter am 28.03.2007,
28. AGSB-Jahrestagung, Köln. <a href="talks/mayr_walter-AGSB07.pdf">Präsentation
pdf</a> [1031 kb]</li>
<li class="text"><strong> Zur Integrität und Integration von elektronischen
Publikationen - Modellüberlegungen im Umfeld der Digitalen Bibliothek</strong>.
Vortrag am 23.03.2007, Tagung der <a href="http://www.wissenschaftsforschung.de/">Gesellschaft
für Wissenschaftsforschung</a> zum Thema "Integrität
wissenschaftlicher Publikationen in der Digitalen Bibliothek",
Institut für Bibliotheks- und Informationswissenschaft der Humboldt-Universität,
Berlin. </li>
<li class="text"><strong> Zum Stand der Heterogenitätsbehandlung
in vascoda: Bestandsaufnahme und Ausblick</strong>. Vortrag mit Anne-Kathrin
Walter am 19.03.2007, <a href="http://www.bid-kongress2007.de/">3. Leipziger
Kongress für Information und Bibliothek</a>, Leipzig. <a href="talks/mayr_walter-BID07.pdf">Präsentation
pdf</a> [995 kb]</li>
<li class="text"><strong> Einsatzmöglichkeiten von Crosskonkordanzen
in vascoda</strong>. Vortrag mit Anne-Kathrin Walter am 28.09.2006,
<a href="http://www.iuk-initiative.org/">12. IuK-Jahrestagung</a>, Göttingen.
<a href="http://www.iuk-initiative.org/index.php?option=com_content&task=view&Itemid=93&id=119">Abstract</a>,
<a href="talks/mayr-walter_iuk06.pdf">Präsentation pdf</a> [1.3
mb]</li>
<li class="text"> <strong>Abdeckung und Aktualität des Suchdienstes
Google Scholar</strong>. Vortrag mit Anne-Kathrin Walter am 28.09.2006,
Jahrestagung des Arbeitskreises Bibliotheken und Informationseinrichtungen
der Leibniz-Gemeinschaft, Göttingen. <a href="talks/mayr_walter_AK-Bibliotheken06.pdf">
Präsentation pdf</a> [624 kb]</li>
<li class="text"> <strong>Mapping Knowledge Organization Systems</strong>.
Vortrag mit Anne-Kathrin Walter am 04.07.2006, 10. Tagung der Deutschen
Sektion der Internationalen Gesellschaft für Wissensorganisation
(<a href="http://www.bonn.iz-soz.de/wiss-org/2006info.htm">ISKO 2006</a>),
Wien. </li>
<li class="text"> <strong>Exploring the Academic Invisible Web</strong>.
Vortrag mit Dirk Lewandowski am 09.02.2006, <a href="http://conference.ub.uni-bielefeld.de/2006/programme/">8th
International Bielefeld Conference</a>, Bielefeld. <a href="talks/Lewandowski-Mayr_BC06.pdf">Präsentation
pdf</a> [186 kb]</li>
<li class="text"> <strong>Google Scholar</strong> <strong>- eine vorläufige
Bestandsaufnahme</strong>. Vortrag am 10.11.2005, HTWK Leipzig. Arbeitskreis
für Information Leipzig (AKI L) "Revival der Fachinformation?
Neue Ansätze für alte Probleme?". <a href="talks/mayr_walter_htwk-leipzig.pdf">Präsentation
pdf</a> [993 kb]</li>
<li class="text"> <strong>Macro- & Micro-Mining: Web server log file
examples</strong>. Poster am 03.11.2005, <a href="http://www.fz-juelich.de/zb/Knowledge_eXtended/">Knowledge
eXtended</a> Konferenz, Jülich. </li>
<li class="text"><strong>Google Web APIs - An instrument for webometric
analyses?</strong> Poster am 25.7.2005, 10th International Conference
of the International Society for Scientometrics and Informetrics (<a href="http://www.umu.se/inforsk/ISSI2005/index.htm">ISSI
2005</a>), Stockholm. </li>
<li class="text"> <strong>Google Scholar - Wie tief gräbt diese Suchmaschine?</strong>
Vortrag mit Anne-Kathrin Walter am 10.05.2005, <a href="http://www.iuk-initiative.org/">11.
IuK-Jahrestagung</a>, Bonn. <a href="talks/mayr_walter_iuk05.pdf">Präsentation
pdf</a> [411 kb]</li>
<li class="text"><strong>Zur Leistungsfähigkeit von Crosskonkordanzen
als Mittel der Heterogenitätsbehandlung in Informationssystemen.
Evaluierung am Beispiel des wissenschaftlichen Fachportals infoconnex</strong>.
Vortrag mit Anne-Kathrin Walter und Maximilian Stempfhuber am 10.05.2005,
<a href="http://www.iuk-initiative.org/">11. IuK-Jahrestagung</a>, Bonn.
<a href="http://www.iuk-initiative.org/pdf/sess8_walter_mayr.pdf">Präsentation
pdf</a> [576 kb]</li>
<li class="text"><strong>Auf dem Weg zum wissenschaftlichen Fachportal
- Modellbildung und Integration heterogener Informationssammlungen</strong>.
Vortrag mit Maximilian Stempfhuber und Anne-Kathrin Walter am 23.05.2005,
<a href="http://www.online-tagung.de/">27. DGI-Online-Tagung</a>, Frankfurt
am Main. <a href="talks/mayr_etal_dgi05_presentation.pdf">Präsentation
pdf</a> [481 kb]</li>
<li class="text"><strong>Web Services - Einsatzmöglichkeiten für
das Information Retrieval im WWW</strong>. Vortrag mit Fabio Tosques
am 24.05.2005, <a href="http://www.online-tagung.de/">27. DGI-Online-Tagung</a>,
Frankfurt am Main. <a href="talks/tosques_mayr_dgi05_presentation.pdf">Präsentation
pdf</a> [175 kb]</li>
<li class="text"><strong>Das Buch und sein Haus: ein Digitalisierungsprojekt
am Institut für Bibliothekswissenschaft</strong>. Vortrag mit Engelbert
Plassmann am 18.03.2005, <a href="http://www.ub.uni-duesseldorf.de/bib05/start">94.
Deutscher Bibliothekartag</a>, Düsseldorf. <a href="talks/bibliothekartag-05.pdf">Präsentation
pdf</a> [10 mb]</li>
<li class="text"><strong>Die Logfiles des IB-Webservers - Ergebnisse einer
Magisterarbeit aus der Webometrie</strong>. Vortrag am 06. Juli 2004,
Berliner Bibliothekswissenschaftlichen Kolloquium (<a href="http://www.ib.hu-berlin.de/about/veranst/bbk/index.html" target="_blank">BBK</a>),
Institut für Bibliothekswissenschaft HU Berlin. <a href="magisterarbeit/bbk04.pdf">Präsentation
pdf</a> [1.6 mb]</li>
<li class="text"><strong>Informationsrecherche im Internet
mit Hilfe der Google Web APIs. </strong>Vortrag gehalten am 12. Juni
2004 zusammen mit Fabio Tosques auf der Langen Nacht der Wissenschaften
(<a href="http://www.ib.hu-berlin.de/langenacht/index.html" target="_blank">Lange
Nacht 2004</a>), Institut für Bibliothekswissenschaft HU Berlin.
<a href="arbeit/langenacht_04.pdf">Präsentation pdf</a> [880 kb]</li>
<li class="text"><strong>Logfile Analyse II.</strong> Vortrag
gehalten am 26. Mai 2004, 8. Internetsalon, PR-IDE Berlin. <a href="talks/internetsalon8_kurz.pdf">Kurzfassung
pdf</a> [1.2 mb], <a href="talks/internetsalon8.pdf">Langfassung
pdf</a> [1.6 mb]</li>
<li class="text"><strong>Einführung in die Logfile
Analyse.</strong> Vortrag gehalten am 31. März 2004, 7. Internetsalon,
PR-IDE Berlin. <a href="talks/internetsalon7_kurz.pdf">Kurzfassung
pdf</a> [225 kb], <a href="talks/internetsalon7.pdf">Langfassung
pdf</a> [1.2 mb]<br />
</li>
</ul>
<p class="headline"><a name="vort" id="vort"></a>Unpublished works</p>
<ul>
<li class="text">"New Economy" ein neuer Organisationstyp? -
eine empirische Untersuchung zu spezifischen Organisationsstrukturen
in der IT-Industrie <br /> (2002)</li>
<li class="text">Gewerkschaften unter Veränderungsdruck – Status
quo minus VERSUS strategische Neuorientierung (2002)</li>
<li class="text">Cyberwar – Neue Technologie und Rüstungskontrolle (2002)</li>
<li class="text">Informatik & Informationsgesellschaft I: Wen schützt
das Urheberrecht? Das Beispiel Napster - Gnutella (2001)</li>
<li class="text">Navigieren und Suchen: dublin core: die renaissance der
bibliothekare (2001)</li>
<li class="text">Evaluation und Annotation von WWW-Publikationen:<br />
Die Suchfibel </li>
<li class="text">Zwischen zwei Universitäten – sich beflügelnde
Gegensätze - Erfahrungen aus einem interdisziplinären Magister-Informatikstudium
an der Humboldt-Universität zu Berlin (2003)</li>
<li class="text">IFLA 03 - ein Nachmittag auf dem World Library and Information
Congress in Berlin (Eindrücke des Besuchs auf der IFLA 03) (<a href="http://www.ib.hu-berlin.de/ifla/berichte/pmayr.html" target="_blank">Beitrag
IB</a>, (2003)</li>
</ul>
<p> </p></td>
<!-- start projects -->
<td width="211" valign="top"> <p align="center" class="headline"><h2><a name="proj" id="proj"></a>Projects</h2> </p>
<ul>
<li class="text"><a href="https://www.nfdi4datascience.de/">NFDI4DataScience</a>. DFG project, since 2023
<li class="text"><a href="http://ominoproject.eu/">Overcoming Multilevel INformation Overload (OMINO)</a>. HORIZON-MSCA Staff Exchanges, EU project, Start: January 2023.
<li class="text"><a href="https://vadis-project.github.io/">VAriable Detection, Interlinking and Summarization (VADIS)</a>. DFG project, Start: September 2021.
<li class="text"><a href="https://www.pollux-fid.de/">POLLUX - Fachinformationsdienst Politikwissenschaft</a>. DFG project, since 2016
<li class="text"><a href="https://sociohub-fid.de/">SocioHub - Fachinformationsdienst Soziologie</a>. DFG project, since 2021
<li class="text"><a href="https://kbopenbib.github.io/en/">KB OpenBib -- Comparative Analysis and Curation of German Metadata in Open Bibliometric Data</a>. BMBF project, since 2023
<li class="text"><a href="http://www.bibliometrie.info/">Kompetenzzentrum Bibliometrie</a>. BMBF project, since 2014.
<li class="text"><a href="https://github.com/kalawinka/season/">Social Network and Scientometric Analysis in Collaborative Research Publications between India and Germany (SEASON)</a>. DAAD project, Start: November 2022. Ended.
<li class="text"><a href="https://kalawinka.github.io/minack/">Mining Acknowledgement Texts in Web of Science (MinAck)</a>. BMBF project. Ended.
<li class="text"><a href="https://www.gesis.org/en/research/external-funding-projects/overview-external-funding-projects/reference-understanding-in-the-social-sciences-outcite">Reference Understanding in the Social Sciences (OUTCITE)</a>. DFG project, start: August 2021. Ended.
<li class="text"><a href="https://github.com/PhilippMayr/past-projects/blob/main/condata.md">Establishing Contextual Dataset Retrieval - transferring concepts from document to dataset retrieval (ConDATA)</a>. DFG project. Ended.
<li class="text"><a href="https://github.com/PhilippMayr/past-projects/blob/main/OASE.md">"Open Access Effects" - Structural and author specific influencing factors on the impact of OA publications (OASE)</a>. BMBF project. Ended.
<li class="text"><a href="https://github.com/PhilippMayr/past-projects/blob/main/selfcitations.md">Analyzing Self-citations in Web of Science</a>. BMBF project. Ended.
<li class="text"><a href="https://github.com/PhilippMayr/past-projects/blob/main/AMUR.md">AMUR - Benutzerführung und Systemverbesserung für Retrievalsitzungen</a>. DFG project. Ended.
<li class="text"><a href="https://github.com/PhilippMayr/past-projects/blob/main/OSCOSS.md">OSCOSS - Opening Scholarly Communication in the Social Sciences</a>. DFG project. Ended.
<li class="text"><a href="https://github.com/PhilippMayr/past-projects/blob/main/EXCITE.md">EXCITE - Extraction of Citations from PDF Documents</a>. DFG project. Ended.
<li class="text"><a href="https://github.com/PhilippMayr/past-projects/blob/main/linked.swissbib.md">Linked.Swissbib.ch</a>. HEG-Genève project. Ended.
<li class="text"><a href="https://web.archive.org/web/20200713055434/http://www.gesis.org/forschung/drittmittelprojekte/archiv/irm/">Value-Added Services for Information Retrieval (IRM)</a>. DFG project. Ended.
<li class="text"><a href="https://web.archive.org/web/20170718030557/http://www.gesis.org/forschung/drittmittelprojekte/archiv/irm2">IRM II</a>. DFG project. Ended.
<li class="text"><a href="https://www.pedocs.de/volltexte/2015/11081/pdf/Botte_et_al_2015_Monitoring_Bildungsforschung.pdf">Monitoring Bildungsforschung</a>. Leibniz project. Ended.
<li class="text"><a href="https://web.archive.org/web/20200713055325/http://www.gesis.org/forschung/drittmittelprojekte/archiv/komohe/">Modellbildung und Heterogenitätsbehandlung (KoMoHe)</a>. BMBF project. Ended.
<li class="text"><a href="http://www.gesis.org/">sowiport</a>- search portal for the Social Sciences</li>
<li class="text"><a href="http://ssoar.info/">SSOAR</a>- Social Science Open Access Repository</li>
<li class="text"><a href="http://www.leibnizopen.de/">LeibnizOpen</a>- Publikationen aus der Leibniz-Gemeinschaft</li>
</ul>
<!-- start editorial boards -->
<p align="center" class="headline"><a name="editorial" id="editorial"></a>Member of Editorial Boards</p>
<ul>
<li class="text"><a href="https://link.springer.com/journal/11192">Scientometrics</a> (Springer)</li>
<li class="text"><a href="https://www.tandfonline.com/toc/tham20/current">New Review of Hypermedia and Multimedia</a> (Taylor & Francis)</li>
<li class="text"><a href="https://link.springer.com/journal/799">International Journal on Digital Libraries</a> (Springer)</li>
<li class="text"><a href="https://www.frontiersin.org/journals/research-metrics-and-analytics">Frontiers in Research Metrics and Analytics</a> (Frontiers)</li>
<li class="text"><a href="https://www.degruyter.com/view/j/iwp">Information - Wissenschaft & Praxis</a> (DE GRUYTER)</li>
</ul>
<p align="center" class="headline">Media</p>
<ul>
<li class="text"><a href="https://www.pw.edu.pl/engpw/News/How-not-to-give-in-to-too-much-information">How not to give in to too much information?</a> OMINO kickoff</li>
<li class="text"><a href="https://www.natureindex.com/news-blog/chemistry-researchers-cite-their-own-work-the-most">Chemistry researchers cite their own work the most</a> Natureindex</li>
<li class="text"><a href="https://www.natureindex.com/news-blog/preprints-boost-article-citations-and-mentions">Preprints boost article citations and mentions</a> Natureindex</li>
<li class="text"><a href="http://www.zeit.de/digital/internet/2010-09/deepweb-google/seite-1">Deep Web: Schürfen in den Tiefen des Netzes</a> Zeit Online vom 21.09.2010</li>
<li class="text"><a href="http://www.handelsblatt.com/technologie/it-internet/deep-web-die-dunkle-seite-des-internets;2658149">Deep Web: Die dunkle Seite des Internets</a> Handelsblatt vom 20.09.2010</li>
<li class="text"><a href="http://www.dradio.de/dkultur/sendungen/ewelten/536905/">Was
die Suchmaschine nicht findet</a> / Deep Web - Über das unsichtbare
Internet; Deutschlandradio - Elektronische Welten vom 30.08.06</li>
<li class="text"><a href="http://www.berliner-zeitung.de/archiv/die-neue-suchmaschine-durchforstet-das-internet-nach-wissenschaftlichen-artikeln--dabei-uebersieht-sie-viele-texte-google-scholar-auf-dem-pruefstand,10810590,10298398.html">Google
Scholar auf dem Prüfstand</a> ; Berliner Zeitung vom 01.07.05</li>
<li class="text"><a href="tmp/ct14_2005.gif">Wissenschaftssuche mit Lücken</a>
; c't 14, 2005, S. 50</li>
<li class="text"><a href="http://www.dradio.de/dlf/sendungen/campus/405260/">Google
für Wissenschaftler</a> ; Deutschlandfunk, Campus & Karriere vom
10.08.2005</li>
<li class="text">Wie Google die Welt sieht; Financial Times Deutschland, Forschung vom 17.10.2005,