-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
1135 lines (966 loc) · 69.9 KB
/
index.html
File metadata and controls
1135 lines (966 loc) · 69.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<!--[if lt IE 9 ]><html class="no-js oldie" lang="en"> <![endif]-->
<!--[if IE 9 ]><html class="no-js oldie ie9" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!-->
<html class="no-js" lang="en">
<!--<![endif]-->
<head>
<!--- basic page needs
================================================== -->
<meta charset="utf-8">
<title>Workshop on Open Citations</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- mobile specific metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/vendor.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/programme.css">
<!-- custom css -->
<link rel="stylesheet" href="css/custom.css">
<!-- our project just needs Font Awesome Solid + Brands -->
<link href="css/fontawesome-free-6.6.0-web/css/fontawesome.css" rel="stylesheet" />
<link href="css/fontawesome-free-6.6.0-web/css/brands.css" rel="stylesheet" />
<link href="css/fontawesome-free-6.6.0-web/css/solid.css" rel="stylesheet" />
<!-- script
================================================== -->
<script src="js/modernizr.js"></script>
<script src="js/pace.min.js"></script>
<!-- favicons
================================================== -->
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon">
</head>
<body id="top" style="word-wrap:break-word;">
<!-- header
================================================== -->
<header class="s-header">
<div class="header-logo">
<a class="site-logo" href="index.html">
<img src="images/logo.png" alt="Homepage">
</a>
</div>
<nav class="header-nav">
<a href="#0" class="header-nav__close" title="close"><span>close</span></a>
<div class="header-nav__content">
<h3>menu</h3>
<ul class="header-nav__list">
<li class="current"><a class="smoothscroll" href="#home" title="home">home</a></li>
<li><a class="smoothscroll" href="#about" title="about">about</a></li>
<li><a class="smoothscroll" href="#cfp" title="call for participation">call for participation</a></li>
<li><a class="smoothscroll" href="#program" title="program">program</a></li>
<li><a class="smoothscroll" href="#speakers" title="invited speakers">invited speakers</a></li>
<!--<li><a class="smoothscroll" href="#register" title="register">online participation</a></li>-->
<!--<li><a class="smoothscroll" href="#participants" title="participants">participants</a></li>-->
<li><a class="smoothscroll" href="#organisers" title="organisers">organisers</a></li>
<!--<li><a class="smoothscroll" href="#sponsors" title="sponsors">sponsors</a></li>-->
<li><a class="smoothscroll" href="#venue" title="venue">venue</a></li>
<li><a class="smoothscroll" href="#contact" title="contact">contact</a></li>
<li><span title="editions">previous edition</span>
<ul id="editions">
<li><a href="https://workshop-oc.github.io/2018" title="2018">2018</a></li>
<li><a href="https://workshop-oc.github.io/2020" title="2020">2020</a></li>
<li><a href="https://workshop-oc.github.io/2022" title="2022">2022</a></li>
<li><a href="https://workshop-oc.github.io/2023" title="2023">2023</a></li>
</ul>
</li>
</ul>
<ul class="header-nav__social">
<li>
<!--<i class="fa-brands fa-x-twitter"></i>-->
<a href="https://twitter.com/workshop_oc"><i class="fa-brands fa-x-twitter"></i></a>
</li>
</ul>
</div> <!-- end header-nav__content -->
</nav> <!-- end header-nav -->
<a class="header-menu-toggle" href="#0">
<span class="header-menu-text">menu</span>
<span class="header-menu-icon"></span>
</a>
</header> <!-- end s-header -->
<!-- home
================================================== -->
<section id="home" class="s-home target-section" data-parallax="scroll" data-image-src="images/banner.jpg" data-natural-width=3000 data-natural-height=2000 data-position-y=center>
<div class="overlay"></div>
<!--<div class="shadow-overlay"></div>-->
<div class="home-content">
<div class="row home-content__main">
<h3>May 28-29, 2025 | Bologna, italy</h3>
<h1>
Workshop on Open Citations <br>& Open Scholarly Metadata 2025
</h1>
<div class="home-content__buttons">
<a href="#contact" class="smoothscroll btn btn-dark">
contact us
</a>
<a href="#about" class="smoothscroll btn btn-dark">
info
</a>
<a href="#venue" class="smoothscroll btn btn-dark">
venue
</a>
</div>
<br>
<div class="home-content__buttons">
<a id="#proceedings_link" href="https://zenodo.org/records/17199918" class="btn btn-dark">
Proceedings of the Workshop
</a>
<a id="#recordings_link" href="https://www.youtube.com/playlist?list=PLJfoW7ub2AkxzLLaXcpJOt5ccSdG24WH2" class="btn btn-dark">
Day 2 Recordings
</a>
</div>
</div>
<!--
<div class="home-content__scroll">
<a href="#about" class="scroll-link smoothscroll">
<span>Scroll Down</span>
</a>
</div>
<div class="home-content__line"></div>
-->
</div> <!-- end home-content -->
<ul class="home-social">
<li>
<a href="https://twitter.com/workshop_oc"><i class="fa-brands fa-x-twitter"></i></a>
<!--<a href="https://twitter.com/intent/tweet?url=https://workshop-oc.github.io/&text=The%204th%20edition%20of%20the%20Workshop%20on%20%23OpenCitations%20and%20%23OpenScholarlyMetadata%2C%20%23Bologna%2C%2026-27%20October%202023"><i class="fa fa-twitter" aria-hidden="true"></i><span>Twitter</span></a>-->
</li>
</ul>
<!-- end home-social -->
</section> <!-- end s-home -->
<!-- about
================================================== -->
<section id='about' class="s-about gen-section">
<div class="row section-header has-bottom-sep" data-aos="fade-up">
<div class="col-full">
<h1 class="display-1 display-1--light">THE WORKSHOP</h1>
</div>
</div>
<div class="row block-1-4 block-m-1-2 block-mob-full justify-content-center" data-aos="fade-up">
<div class="col-full">
<p>We invite to the Workshop Citations and Open Scholarly Metadata (WOOC) researchers, scholarly publishers, funders, policy makers, institutions, and open citations advocates, interested in the widespread adoption of practises for creation, sharing, reuse and improvement of open scholarly metadata.</p>
<p>This year edition of the workshop will gravitate around the following theme:</p>
<p style="font-style: italic; font-weight: bold;">"Open Access of Research Information"</p>
<p>In particular, <strong>the first day</strong> will be dedicated to the <strong>Bologna Meeting on Open Research Information</strong>, to encourage discussion between the signatories and supporters of the <a href="https://barcelona-declaration.org/" target="_blank">Barcelona Declaration</a> and other interested bodies and collaboratively orient the common roadmap, thus allowing the articulation of the outcomes that have recently been discussed during the <a href="https://barcelona-declaration.org/conference/" target="_blank">Paris Conference on Open Research Information</a>.</p>
<p>The <strong>second day</strong> will be dedicated to <strong>invited contributions, presentations and a poster session</strong> selected among the participants in the call for contributions on the workshop theme.</p>
<p><strong>The participation to both the days of WOOC 2025 is open to everyone</strong>, and in particular OpenCitations and the WOOC organizing committee aim to welcome the signatories and supporters of the Barcelona Declaration, and anyone interested in Open Research Information in an interactive event that aspires to encourage the incubation of ideas to strategically orienting the development of practices in open research information.</p>
<p>The Workshop on Open Citations and Open Scholarly Metadata 2025 will be organized in the spaces of the University of Bologna, one of the signatories of the Barcelona Declaration on Open Research Information and CoARA, of which it is also leader of the CoARA National Chapter.</p>
<!--<p><i>A small fee will be charged for participation (details to be announced soon)</i></p>-->
</div>
<!--<br>
<div class="col-full justify-content-center">
<h3 class="subhead">COUNTDOWN TO WOOC-2025</h3>
<div id="countdown"></div>
</div> -->
<!-- <div class="col-full justify-content-center">
<p><strong>The workshop materials are available in the WOOC2023 community on Zenodo</strong></p>
<a href="https://zenodo.org/communities/wooc2023" class="btn btn-in-body">
WOOC materials
</a>
</div> -->
</div>
</section> <!-- end s-about -->
<!-- call for participation
================================================== -->
<section id='cfp' class="s-services gen-section">
<div class="row section-header" data-aos="fade-up">
<div class="col-full">
<h1 class="display-2">CALL FOR PARTICIPATION & CONTRIBUTIONS</h1>
</div>
</div>
<div class="row stats block-1-2 block-m-1-2 block-mob-full justify-content-center" data-aos="fade-up">
<div class="col-full">
<p><strong>If you wish to participate</strong> in the Workshop on Open Citations and Open Scholarly Metadata 2025 as an attendee, please fill in the form by providing the requested information and a short bio to apply for the event. You will receive a notification of acceptance by 20 February 2025. In case of oversubscriptions, the organisers will select attendees from among those who have applied.</p>
<p><strong>If you wish to submit a proposal</strong> to the Workshop of Open Citations and Open Scholarly Metadata 2025, please fill in both the first part and the second part of the application form to submit a contribution that fits this year's theme "Open Access of Research Information". The organizing committee will decide if the selected submissions will involve either a talk of 15-minute duration, with a 5-minute discussion following, or a poster presentation accompanied by a 2-3 minute pitch talk. The workshop day dedicated to the presentation of the selected contributions will be May 29. Take into consideration the selection criteria, and submission/author guidelines listed under.</p>
<div>
<em class="toggle-section section-toggle-header"><span id="toggle_icon"> <i class="fa-solid fa-plus"></i> </span>Selection Criteria</em><section class="closed section-toggle-body">
<ul>
<li>Relevance to the workshop theme</li>
<li>Methodological rigor and depth of elaboration</li>
<li>Interest and potential for interdisciplinary engagement</li>
<li>Impact and broader implications</li>
</ul>
</section>
</div>
<div>
<em class="toggle-section section-toggle-header"><span id="toggle_icon"> <i class="fa-solid fa-plus"></i> </span>Submission guidelines</em><section class="closed section-toggle-body">
<ul>
<li>Contributions should be submitted in the form of a long abstract, ranging between 1250 and 1500 words.</li>
<li>Accepted contributions will be limited to one presentation or poster per author. Similarly, we aim to avoid more than one presentation on a single initiative/project.</li>
<li>Only submissions in English will be considered.</li>
<li>Make sure that you have approval from your institution to participate in the conference at the latest when the results are announced.</li>
<li>All submitted contributions will be peer-reviewed by at least two reviewers.</li>
<li>Each accepted abstract will be published as conference paper with dedicated DOI under the WOOC-2025 community on Zenodo (<a href="https://zenodo.org/communities/wooc2025">https://zenodo.org/communities/wooc2025</a>)</li>
<li>Selected contributions will be returned to the authors for the re-editing phase, formatted as a pre-compiled template in ODT format.</li>
</ul>
</section>
</div>
<div>
<em class="toggle-section section-toggle-header"><span id="toggle_icon"> <i class="fa-solid fa-plus"></i> </span>Author guidelines</em><section class="closed section-toggle-body">
<ul>
<li><strong>Word Count</strong>: Ensure your abstract stays within the specified limit of 1250–1500 words (including references).</li>
<li><strong>Structure</strong>: Start with the full title of your abstract, followed immediately by the names and affiliations of all authors. Organize the content into clear sections, for instance: “Purpose”, “Methods”, “Results”, and “Value” to provide a logical and coherent flow of information.</li>
<!--<li><strong>Text formatting</strong>: Use a standard font style (e.g., Times New Roman or Arial) with a font size of 11 or 12 pt for the body text (headings are excluded).</li>-->
<li><strong>Language</strong>: Write in English (either US or UK spelling is acceptable). Use clear, concise language to present your work, and ensure the text is free from grammatical errors and typos before submission.</li>
<li><strong>References</strong>: References can be included to provide context or support for the findings. All references must adhere to APA style.</li>
<!--<li><strong>File format</strong>: PDF only.-->
</ul>
</section>
</div>
<br>
<div>
<p style="font-size: 1.2em;">
<strong>Application deadline</strong>: <span><s>January 13</s> January 31</span>, 2025<br>
<strong>Notification of acceptance (participation only)</strong>: <span>February 20</span>, 2025<br>
<strong>Notification deadline (contributions)</strong>: <span><s>March 10</s> March 21</span>, 2025<br>
</p>
<span style="font-size: 0.8em;">All deadlines are 23:59 AoE (Anywhere on Earth)</span>
</div>
<br>
<a class="btn btn--stroke" target="_blank" style="font-size: 14pt; text-wrap: wrap; height:auto; pointer-events: none; opacity: 0.2; cursor: default; color:gray; border-color:gray;">Apply for WOOC-2025</a>
<br>
<br>
<p style="font-size: 0.9em; text-align:center;">
<strong>Fees and expenses:</strong> for the accepted attendees and contributors, we will request a small registration fee around €200 (exact amount to be announced). We will provide lunches and refreshments on all days, and a free workshop dinner on Wednesday 28 May.
</p>
</div>
</div>
</section>
<!-- Online Register
==================================================
<section id='register' class="s-services gen-section">
<div class="row section-header" data-aos="fade-up">
<div class="col-full">
<h1 class="display-2">Online participation</h1>
</div>
</div>
<div class="row stats block-1-2 block-m-1-2 block-mob-full justify-content-center" data-aos="fade-up">
<div class="col-full">
<p>Register here to join the online articipation and streaming of the Workshop on Open Citations and Open Scholarly Metadata 2025. The online participation is free. Fill in the form with your contact details, and we will contact you to send the link to the virtual room a few days before the workshop.</p>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSelGEfZ4gpe2_Ps55OpMmVa82xxMoYiOzSq6AmZlHK421-csA/viewform" style="font-size: 14pt; text-wrap: wrap; height:auto;" class="btn btn--stroke imp-btn" target="_blank">Register to join online streaming</a>
<p><strong>May 28</strong> will be dedicated to the Bologna Meeting on Open Research Information. Online interaction with the in-presence participants will be guaranteed within the breakout rooms.</p>
<p><strong>May 29</strong> will be dedicated to invited and selected talks and presentations. The event will be streamed online, but, due to organizational reasons, it won't be possible for the online participants to interact with the in-presence speakers and participate in the Q&A.</p>
<p><strong>You can choose to participate in both days, or in just one of them.</strong></p>
For any questions and clarifications please contact <a href="mailto:comms@opencitations.net">comms@opencitations.net</a>.
</div>
</div>
</section> -->
<!-- program
==================================================-->
<section id='program' class="s-works">
<div class="intro-wrap">
<div class="row section-header has-bottom-sep light-sep" data-aos="fade-up">
<div id="programme_container">
<div id="programme_container_title" class="col-full">
<h1 class="display-2 display-2--light">Program<br><br></h1>
</div>
<!--
Day 1 – Bologna Meeting on Open Research Information
Venue: Room C, plesso Belmeloro
[schedule to be announced- CEST time]
Opening: h. 9:30
Closing: h. 18
Social Dinner: h.20 (location TBA)
Day 2
Venue: Aula Prodi, Department of History, Cultures and Civilization
[schedule to be announced- CEST time]
Opening: h. 9:00
Closing: h. 18:30
-->
<!--
<h3 class="subhead">DAY 1 | WEDNESDAY, MAY 28
<p style="font-size: 12pt">
Bologna Meeting on Open Research Information
</p>
<p style="font-size: 10pt">
Venue: Room C, plesso Belmeloro <br>
[schedule to be announced- CEST time] <br>
</p>
</h3>
<table class="programme">
<tbody>
<tr><td class="p-time">9:30</td><td>Opening</td></tr>
<tr><td class="p-time">18:00</td><td>Closing</td></tr>
<tr><td class="p-time">20:00</td><td>Social Dinner (location TBA)</td></tr>
</tbody>
</table>
<h3 class="subhead">DAY 2 | THURSDAY, MAY 29
<p style="font-size: 10pt">
Venue: Aula Prodi, Department of History, Cultures and Civilization <br>
[schedule to be announced- CEST time] <br>
</p>
</h3>
<table class="programme">
<tbody>
<tr><td class="p-time">9:00</td><td>Opening</td></tr>
<tr><td class="p-time">18:00</td><td>Closing</td></tr>
</tbody>
</table>
-->
<h3 class="subhead">DAY 1 | WEDNESDAY, MAY 28
<p style="font-size: 12pt">
Bologna Meeting on Open Research Information
</p>
<p style="font-size: 10pt">
Venue: Room C, plesso Belmeloro
</p>
<p>
<strong>Watch the <a href="https://www.youtube.com/watch?v=1USShJ5cO9U&t=4s&ab_channel=BarcelonaDeclarationonOpenResearchInformation" target="_blank">recordings of Day 1</a></strong>
</p>
</h3>
<table class="programme">
<tbody>
<tr><td class="p-time">9:30</td><td>Registration</td></tr>
<tr>
<td class="p-time">10:00</td>
<td> Official welcome by Unibo - Raffaella Campaner, Vice Rector for International Relations<br>Welcome, housekeeping</td>
</tr>
<tr><td class="p-time">10:15</td><td>Barcelona Declaration: Introduction & Where are we now</td></tr>
<tr><td class="p-time">10:45</td><td>Short presentations by signatories</td></tr>
<tr class="session no-border first"><td class="p-time">●</td><td><strong>Carla Carbonell Cortés, Fundación “la Caixa”</strong></td></tr>
<tr class="session no-border"><td class="p-time">●</td><td><strong>John Chodacki, California Digital Library</strong></td></tr>
<tr class="session no-border last"><td class="p-time">●</td><td><strong>Ana Ranitovic, Dutch signatories of the Barcelona Declaration</strong></td></tr>
<tr class="break"><td class="p-time">11:15</td><td>Coffee break</td></tr>
<tr><td class="p-time">11:45</td><td>Introduction working groups & break-out sessions</td></tr>
<tr><td class="p-time">12:00</td><td>1st breakout session (3 working groups)</td></tr>
<tr class="session no-border first"><td class="p-time">●</td><td><strong>Working group 3 - Funding metadata</strong></td></tr>
<tr class="session no-border"><td class="p-time">●</td><td><strong>Working group 4 - Replacing closed systems</strong></td></tr>
<tr class="session no-border last"><td class="p-time">●</td><td><strong>Working group 6 - Evaluating open data sources</strong></td></tr>
<tr class="break"><td class="p-time">13:00</td><td>Lunch break</td></tr>
<tr><td class="p-time">14:30</td><td>Reporting 1st breakout sessions</td></tr>
<tr><td class="p-time">15:00</td><td>2nd breakout session (3 working groups)</td></tr>
<tr class="session no-border first"><td class="p-time">●</td><td><strong>Working group 1 - Journal article metadata and book metadata</strong></td></tr>
<tr class="session no-border"><td class="p-time">●</td><td><strong>Working group 2 - Metadata on research outputs in IRs, preprint and data repositories</strong></td></tr>
<tr class="session no-border last"><td class="p-time">●</td><td><strong>Working group 7 - Evidence of benefits</strong></td></tr>
<tr class="break"><td class="p-time">16:00</td><td>Coffee break</td></tr>
<tr><td class="p-time">16:30</td><td>Reporting 2nd breakout sessions</td></tr>
<tr><td class="p-time">17:00</td><td>Next steps for the Barcelona Declaration</td></tr>
<tr><td class="p-time">20:00</td><td>Social Dinner at <i>Signorvino</i>(Piazza Maggiore, 1/C)</td></tr>
</tbody>
</table>
<h3 class="subhead">DAY 2 | THURSDAY, MAY 29
<p style="font-size: 10pt">
Venue: Aula Prodi, Department of History, Cultures and Civilization
</p>
<p>
<strong>Watch the <a href="https://youtube.com/playlist?list=PLJfoW7ub2AkxzLLaXcpJOt5ccSdG24WH2&si=Z1FDCYJm6yiGqRMw" target="_blank">recordings of Day 2</a></strong>
</p>
</h3>
<table class="programme">
<tbody>
<tr><td class="p-time">09:00</td><td>Welcome from the Organizing Committee</td></tr>
<tr><td class="p-time">09:15</td><td>Report from Bologna Meeting on Open Research Information</td></tr>
<tr><td class="p-time">09:45</td><td>[Invited talk] Katherine Skinner (IOI)</td></tr>
<tr><td class="p-time">10:15</td><td>Short Talk Session 1</td></tr>
<tr class="session no-border first"><td class="p-time">10:15</td><td>[Short talk] <strong>Ioanna Grypari (OpenAIRE AMKE)</strong>; Simon Bourdie; Nicki Lisa Cole; Thomas Klebel; Haris Papageorgiou; Pedro Principe; Tony Ross-Hellauer; Petros Stavropoulos; Despoina Sousoni; Lennart Stoy; Vincent Traag; Lena Tsipouri; Tommasso Venturini; Silvia Vignetti<em class="toggle-abstract">The PathOS Project: Evidence, Methods, Tools and Lessons learned for Identifying the Impact of Open Science</em><section class="closed">
<p>PathOS adopts a comprehensive investigative approach to explore how Open Science (OS) practices influence academic, societal, and economic outcomes. Drawing on scoping reviews, causality-drive, AI-assisted and mixed (quanti-quali) methods, and six in-depth case studies, PathOS offers evidence, insights and a set of tools and frameworks for identifying the real-world OS impacts.</p>
</section>
<tr class="session no-border"><td class="p-time">10:30</td><td>[Short talk] <strong>Nees Jan van Eck (CWTS)</strong>; Bram van den Boomen; Martijn Visser <em class="toggle-abstract">Accuracy of affiliation information in open bibliographic data sources: A comparative study of OpenAlex and OpenAIRE for Leiden University</em><section class="closed">
<p>This study examines the accuracy of the attribution of publications to Leiden University in OpenAlex and OpenAIRE, focusing on publications indexed in both data sources.</p>
</section>
<tr class="session no-border"><td class="p-time">10:45</td><td>[Short talk] <strong>Tomasz Umerle (OPERAS)</strong>; Angelo Di Iorio, Matteo Romanello, Cezary Rosiński, Marta Soricetti, Tomasz Umerle<em class="toggle-abstract">OpenCitations for SSH: Improving OPERAS Metrics and Enriching Knowledge Graphs</em><section class="closed">
<p>The presentation shows how the GRAPHIA and LUMEN projects are improving the extraction of citation data from SSH publications. It highlights the use of ML solutions in OpenCitations' CEX tool to address missing references and enhance metadata. The presentation also shows contributions to the SSH KG and OPERAS metrics service.</p>
</section>
<tr class="session"><td class="p-time">11:00</td><td>[Short talk] <strong>Thanasis Vergoulis (ATHENA RC)</strong>; Clifford Tatum <em class="toggle-abstract">GraspOS Infrastructure: Enhancing Discoverability of Open Resources for Responsible Research Assessment</em><section class="closed">
<p>Presenting the GraspOS infrastructure, an open infrastructure that aims to facilitate the implementation of policy reforms towards Open-Science-aware Responsible Research Assessment. The infrastructure aggregates and makes discoverable open resources, such as tools, services, datasets, guidance material that can catalyse the implementation of relevant policy reforms.</p>
</section>
<tr class="break"><td class="p-time">11:15</td><td>Coffee break</td></tr>
<tr><td class="p-time">11:45</td><td>Short Talk Session 2</td></tr>
<tr class="session no-border first"><td class="p-time">11:45</td><td>[Short talk] <strong>Gernot Deinzer (University of Regensburg)</strong>; Julia Bartlewski; Christoph Broschinski; Cornelia Lang;, Dirk Pieper; Bianca Schweighofer; Colin Sippl; Lisa-Marie Stein; Alexander Wagner; Silke Weisheit<em class="toggle-abstract">Cost for research – how cost data of research can be included in open metadata to be reused and evaluated</em><section class="closed">
<p>The openCost project aims to enhance transparency in research funding by making publication-related costs publicly accessible, following FAIR principles. It introduces a metadata schema for cost data, allowing aggregation and analysis across institutions. The project promotes open access and cost-efficient models, benefiting academic institutions, funders, and policymakers.</p>
</section>
<tr class="session no-border"><td class="p-time">12:00</td><td>[Short talk] <strong>Parth Sarin (Stanford University)</strong>; Juan Pablo Alperin <em class="toggle-abstract">Citation Parsing and Analysis with Language Models</em><section class="closed">
<p>A corpus of citations is assembled from the Public Knowledge Project, SciELO, and Redalyc. Language models are then fine-tuned for the task of citation parsing and evaluated on this corpus. The best-performing model is subsequently applied to mark up citations in millions of articles published on Open Journal Systems.</p>
</section>
<tr class="session"><td class="p-time">12:15</td><td>[Short talk] <strong>Zoe Wake Hyde (Public Knowledge Project)</strong> <em class="toggle-abstract">What’s in a Book? A review of book-related work types in various metadata schemas, and an attempt to align these in OMP and Thoth Open Metadata</em><section class="closed">
<p>A focus on the results of a recent research project probing the differences of work type denominations across a variety of platforms and standards which has been conducted by specialists at Public Knowledge Project and Thoth Open Metadata. As we will show, this research indicates a lack of congruence across the numerous platforms and metadata standards considered, all of which offer varying degrees of granularity and specificity with regards to classifying book content.</p>
</section>
<tr><td class="p-time">12:30</td><td><em class="toggle-poster">2-min Pitch Poster Session</em><section class="closed">
<p class="p-poster no-border">[Poster] Daniel Mietchen (Leibniz Institute for Information Infrastructure) – <em> Open Scholarly Metadata for Sharing the Nuances of Research Processes </em></p>
<!--<p class="p-poster no-border">[Poster] Eleonora Colangelo (Frontiers and Crossref) – <em> Open Scholarly Metadata in Action: A Joint Effort of Infrastructure and Publishing </em></p>-->
<p class="p-poster no-border">[Poster] Erica Andreose (University of Bologna) – <em> Investigating Bibliographic Entities Without Persistent Identifiers </em></p>
<!--<p class="p-poster no-border">[Poster] Katherine (Kat) Hart (Overton) – <em> Making ontologies in the humanities more visible and accessible using SKOS </em></p>-->
<p class="p-poster no-border">[Poster] Laurent Antoine Fintoni (University of Bologna) – <em> Making ontologies in the humanities more visible and accessible using SKOS</em></p>
<p class="p-poster no-border">[Poster] Luis Montilla (Crossref) – <em> Mapping Metadata Inequities: Regional Disparities in Crossref Scholarly Records </em></p>
<!--<p class="p-poster no-border">[Poster] Martin Czygan (Internet Archive) – <em> Preserving Scholarly Communications on the Web with Open Metadata</em></p>-->
<p class="p-poster no-border">[Poster] Melissa Harrison(EMBL-EBI) – <em> Enriching Enriching open metadata for preprints with Europe PMC</em></p>
<p class="p-poster no-border">[Poster] Mogens Sandfaer(National Open Research Analytics) – <em> Open - from local CRIS’es to global indexes and back - Creating a high-integrity national open research information and analytics platform in international collaboration </em></p>
<p class="p-poster no-border">[Poster] Nicandro Bovenzi (SIRIS Lab) – <em> Heterogeneous affiliation metadata enrichment with AffilGood </em></p>
<p class="p-poster no-border">[Poster] Paloma Marín Arraiza (ORCID) – <em> Enhancing research integrity with ORCID data </em></p>
<p class="p-poster no-border">[Poster] Philipp Steglich (Leibniz Association) – <em> Strengthening open research information and the use of CRIS in the Institutes of the Leibniz Association </em></p>
<p class="p-poster no-border">[Poster] Roderic Page (University of Glasgow) – <em> The grand challenge of data citation: a critical look at the Making Data Count Data Citation Corpus </em></p>
<p class="p-poster no-border">[Poster] Samuel Scalbert (INRIA) – <em> Open Access and AI for Research Assessment: Identifying and Evaluating Software Mentions in Scholarly Publications </em></p>
<p class="p-poster no-border">[Poster] Simon Willemin (ETH Zurich) – <em> What did we learn from the TOBI project? A 2-year retrospective into the open information landscape </em></p>
<p class="p-poster no-border">[Poster] Verena Weimer (Leibniz Institute for Research and Information in Education) – <em> Open Citation Data for Educational Research </em></p>
</section>
</td></tr>
<tr class="break"><td class="p-time">13:00</td><td>Lunch Break</td></tr>
<tr><td class="p-time">14:30</td><td>Talk by OpenCitations</td></tr>
<tr><td class="p-time">15:00</td><td>Short Talk Session 3</td></tr>
<tr class="session no-border first"><td class="p-time">15:00</td><td><strong>[Short talk] Didier Torny (CNRS)</strong> <em class="toggle-abstract">Discovering and charting the black matter of citations. Matilda as a new source for Open Citations</em><section class="closed">
<p>The operationalization of a complementary strategy to reconstruct missing reference links and share them via the Open Citations infrastructure through PDF extraction.</p>
</section>
<tr class="session no-border"><td class="p-time">15:15</td><td>[Short talk] <strong>Iratxe Puebla (DataCite)</strong>; Maria Gould <em class="toggle-abstract">Scaling open research information for scholarly outputs: The Data Citation Corpus advances evaluation of the impact of research data</em><section class="closed">
<p>The limited research information available on non-article outputs hinders their inclusion in research evaluation. The Data Citation Corpus, developed by Make Data Count, scales the research data-usage information openly available, addresses gaps in the availability of research information, and enables evaluation of the use and impact of research data.</p>
</section>
<tr class="session no-border"><td class="p-time">15:30</td><td>[Short talk] <strong>Andrea Mannocci (CNR-ISTI)</strong>; Paolo Manghi <em class="toggle-abstract">Advancing Integration and Reuse Across Diverse Scholarly Data Sources. Introducing the SKG-IF: the Interoperability Framework for Scientific Knowledge Graphs.</em><section class="closed">
<p>The Scientific Knowledge Graph Interoperability Framework (SKG-IF) is a standardisation effort aimed at enhancing interoperability among Scientific Knowledge Graphs. It defines a core model, APIs, and an extension mechanism to support diverse research needs while ensuring compatibility, coherence, and seamless data integration across different scientific domains and datasets.</p>
</section>
<tr class="session"><td class="p-time">15:45</td><td>[Short talk] <strong>Sofiia Zherebchuk (State Scientific and Technical Library of Ukraine)</strong>; Dmytro Kudas <em class="toggle-abstract">Capacity Building for Open Science: Ukrainian case study</em><section class="closed">
<p>Ukraine is actively integrating into the global research ecosystem by adopting Open Science principles, which emphasize transparency, collaboration, and accessibility. Despite challenges such as the ongoing war and economic constraints, significant progress has been made to establish an Open Science culture, with the State Scientific and Technical Library of Ukraine (SSTL) serving as the central facilitator of these efforts. This paper examines Ukraine’s approach to Open Science, highlighting SSTL’s leadership in advancing national research infrastructure, promoting international collaboration, and building capacity for researchers across the country.</p>
</section>
<tr class="break"><td class="p-time">16:00</td><td>Coffee break</td></tr>
<tr><td class="p-time">16:30</td><td>[Invited Talk] Sara Petti (Open Knowledge Network)</td></tr>
<tr><td class="p-time">17:00</td><td>Short Talk Session 4</td></tr>
<tr class="session no-border first"><td class="p-time">17:00</td><td>[Short talk] <strong>Alessandra Caputo (CSIL Scrl)</strong>; Jessica Catalano <em class="toggle-abstract">The role of open data in driving innovation: insights from UniProt</em><section class="closed">
<p>An analyses of UniProt’s role in open science, highlighting its impact on academic research and industry innovation. Through publication and patent analysis, it shows UniProt’s data accelerates knowledge creation, boosts patenting, and supports SDG goals. Findings reveal UniProt’s increasing influence, particularly in biotechnology and pharmaceuticals, fostering both discovery and application.</p>
</section>
<tr class="session no-border"><td class="p-time">17:15</td><td>[Short talk] <strong>Giulia Malaguarnera (OpenAIRE)</strong>; Natalia Manola; Ioanna Grypari; Leonidas Pispiringas; Paolo Manghi; Stefania Amodeo; Angeliki Tzouganatou <em class="toggle-abstract">Advancing Open Research Information – Insights from the National Open Access Irish Monitor</em><section class="closed">
<p>Presenting the National Open Access Monitor, Ireland, an evidence-based framework evaluating progress on Ireland's national open access policy. Leveraging the OpenAIRE Graph, it tracks policy compliance, assesses research practices, and offers interactive tools. The Monitor promotes transparency and aligns with FAIR principles, supporting an inclusive open research ecosystem.</p>
</section>
<tr class="session no-border"><td class="p-time">17:30</td><td>[Short talk] <strong>Luca De Santis (Net7 Srl)</strong>; Alessandro Bertozzi <em class="toggle-abstract">Boosting data interoperability of GoTriple.eu</em><section class="closed">
<p>GoTriple.eu is the multilingual discovery platform for Social Sciences and Humanities, where scholars can find references of documents (e.g. articles or datasets), projects and authors. We present the ongoing process for maximising access and reuse of GoTriple data through semantic interoperability and by applying open standards</p>
</section>
<tr class="session"><td class="p-time">17:45</td><td>[Short talk] <strong>Sebastiano Giacomini (University of Bologna)</strong>; Alessia Bardi; Marina Buzzoni; Marilena Daquino; Riccardo Del Gratta; Angelo Mario Del Grosso; Franz Fischer; Chiara Martignano; Roberto Rosselli Del Turco; Giorgia Rubin; Francesca Tomasi <em class="toggle-abstract">FAIR Digital Humanities scholarly metadata. The ATLAS project</em><section class="closed">
<p>A discussion toward the role of platforms in preserving and accessing Digital Humanities (DH) research data. It highlights gaps in existing models for describing and linking cultural heritage resources. The ATLAS project introduces an ontology and a knowledge graph to enhance metadata, discovery, and reusability of DH research on Italian Digital Cultural Heritage.</p>
</section>
<tr><td class="p-time">18:00</td><td>Closing session</td></tr>
<tr>
<td>
<br><br>
<img src="images/speakers/becerril.jpg" alt="">
</td>
<td><br><br>[Invited Talk] Arianna Becerril-García (Redalyc, AmeliCA)</br><i>This invited talk was delivered remotely as the speaker could not attend in person. The recording is now available online</i> (<a href="https://www.youtube.com/watch?v=vB5t3OoYuRw">Watch the talk on YouTube</a>)</td></tr>
</tbody>
</table>
</div>
</div>
</div>
</section>
<!-- invited speakers
================================================== -->
<section id="speakers" class="s-about gen-section">
<div class="row section-header" data-aos="fade-up">
<div class="col-full">
<h1 class="display-1 display-1--light">Invited Speakers</h1>
</div>
</div>
<div class="row stats block-1-2 block-m-1-2 block-mob-full justify-content-center" data-aos="fade-up">
<div class="col-full">
<div class="col-block col-12 col-md-6 col-lg-6">
<img class="circle-img" src="images/speakers/petti.jpg" alt="">
<h3>Sara Petti</h3>
<span class="testimonials__pos">Open Knowledge Foundation</span>
<!--<div><a href="https://twitter.com"></a></div>-->
</div>
<div class="col-block col-12 col-md-6 col-lg-6">
<img class="circle-img" src="images/speakers/skinner.jpg" alt="">
<h3>Katherine Skinner</h3>
<span class="testimonials__pos">Director of Programs, IOI</span>
<!--<div><a href="https://twitter.com"></a></div>-->
</div>
</div>
</div>
</section>
<!-- organisers
================================================== -->
<section id="organisers" class="s-about gen-section">
<div class="row section-header" data-aos="fade-up">
<div class="col-full">
<h1 class="display-1 display-1--light">Our organisers</h1>
</div>
</div>
<div class="row about-stats stats block-1-4 block-m-1-2 block-mob-full" data-aos="fade-up">
<div class="col-block">
<img class="circle-img" src="images/organisers/peroni.jpg" alt="">
<h3>Silvio Peroni</h3>
<span class="testimonials__pos">OpenCitations | University of Bologna</span>
<div><a href="https://twitter.com/essepuntato">@essepuntato</a></div>
</div>
<div class="col-block">
<img class="circle-img" src="images/organisers/didiambattista.jpg" alt="">
<h3>Chiara Di Giambattista</h3>
<span class="testimonials__pos">OpenCitations | University of Bologna</span>
<div><a href="https://twitter.com/ChiaraDiGiamba5">@ChiaraDiGiamba5</a></div>
</div>
<div class="col-block">
<img class="circle-img" src="images/organisers/fabbri.jpg" alt="">
<h3>Claudio Fabbri</h3>
<span class="testimonials__pos">OpenCitations | University of Bologna</span>
<!--<div></div>-->
</div>
<div class="col-block">
<img class="circle-img" src="images/organisers/heibi.jpg" alt="">
<h3>Ivan Heibi</h3>
<span class="testimonials__pos">OpenCitations | University of Bologna</span>
<div><a href="https://twitter.com/ivanheib">@ivanheib</a></div>
</div>
</div>
<div class="row about-stats stats block-1-3 block-m-1-2 block-mob-full" data-aos="fade-up">
<div class="col-block">
<img class="circle-img" src="images/organisers/waltman.jpg" alt="">
<h3>Ludo Waltman</h3>
<span class="testimonials__pos">Centre for Science and Technology Studies (CWTS), Leiden University</span>
<div><a href="https://social.cwts.nl/@LudoWaltman">@LudoWaltman</a></div>
</div>
<div class="col-block">
<img class="circle-img" src="images/organisers/kramer.png" alt="">
<h3>Bianca Kramer</h3>
<span class="testimonials__pos">Sesame Open Science</span>
<div><a href="https://akademienl.social/@MsPhelps">@MsPhelps</a></div>
</div>
<div class="col-block">
<img class="circle-img" src="images/organisers/neylon.jpg" alt="">
<h3>Cameron Neylon</h3>
<span class="testimonials__pos">COKI | Centre for Culture and Technology, Curtin University</span>
<div><a href="https://hcommons.social/@cameronneylon">@cameronneylon</a></div>
</div>
</div>
</section>
<!--
Sebastian Barzaghi
John Chodacki
Giovanni Colavizza
Angelo Di Iorio
Bianca Kramer
Catriona MacCallum
Andrea Mannocci
Arcangelo Massari
Philipp Mayr
Valentina Pasqual
Francesco Poggi
Iratxe Puebla
Matteo Romanello
Angelo Salatino
Gianmarco Spinaci
Sahar Vahdati
Ludo Waltman
-->
<section id="pcs" class="s-about gen-section">
<div class="row section-header" data-aos="fade-up">
<div class="col-full">
<h1 class="display-1 display-1--light">Program Committee</h1>
</div>
</div>
<div class="row about-stats stats block-1-4 block-m-1-2 block-mob-full" data-aos="fade-up">
<div class="col-block">
<h3>Ivan Heibi <b>(Chair)</b></h3>
<span class="testimonials__pos">University of Bologna</span>
</div>
<div class="col-block">
<h3>Sebastian Barzaghi</h3>
<span class="testimonials__pos">University of Bologna</span>
</div>
<div class="col-block">
<h3>John Chodacki</h3>
<span class="testimonials__pos">California Digital Library</span>
</div>
<div class="col-block">
<h3>Giovanni Colavizza</h3>
<span class="testimonials__pos">University of Copenhagen | University of Bologna</span>
</div>
</div>
<div class="row about-stats stats block-1-4 block-m-1-2 block-mob-full" data-aos="fade-up">
<div class="col-block">
<h3>Angelo Di Iorio</h3>
<span class="testimonials__pos">University of Bologna</span>
</div>
<div class="col-block">
<h3>Bianca Kramer</h3>
<span class="testimonials__pos">Sesame Open Science</span>
</div>
<div class="col-block">
<h3>Catriona MacCallum</h3>
<span class="testimonials__pos">Future of Scholarly Research</span>
</div>
<div class="col-block">
<h3>Andrea Mannocci</h3>
<span class="testimonials__pos">CNR-ISTI</span>
</div>
</div>
<div class="row about-stats stats block-1-4 block-m-1-2 block-mob-full" data-aos="fade-up">
<div class="col-block">
<h3>Arcangelo Massari</h3>
<span class="testimonials__pos">OpenCitations | University of Bologna</span>
</div>
<div class="col-block">
<h3>Philipp Mayr</h3>
<span class="testimonials__pos">Leibniz Institute for the Social Sciences</span>
</div>
<div class="col-block">
<h3>Arianna Moretti</h3>
<span class="testimonials__pos">University of Bologna</span>
</div>
<div class="col-block">
<h3>Valentina Pasqual</h3>
<span class="testimonials__pos">University of Bologna</span>
</div>
</div>
<div class="row about-stats stats block-1-4 block-m-1-2 block-mob-full" data-aos="fade-up">
<div class="col-block">
<h3>Silvio Peroni</h3>
<span class="testimonials__pos">OpenCitations | University of Bologna</span>
</div>
<div class="col-block">
<h3>Francesco Poggi</h3>
<span class="testimonials__pos">University of Bologna</span>
</div>
<div class="col-block">
<h3>Iratxe Puebla</h3>
<span class="testimonials__pos">Make Data Count, DataCite</span>
</div>
<div class="col-block">
<h3>Matteo Romanello</h3>
<span class="testimonials__pos">University of Zurich</span>
</div>
</div>
<div class="row about-stats stats block-1-4 block-m-1-2 block-mob-full" data-aos="fade-up">
<div class="col-block">
<h3>Angelo Salatino</h3>
<span class="testimonials__pos">Knowledge Media Institute, The Open University</span>
</div>
<div class="col-block">
<h3>Gianmarco Spinaci</h3>
<span class="testimonials__pos">University of Bologna</span>
</div>
<div class="col-block">
<h3>Sahar Vahdati</h3>
<span class="testimonials__pos">Leibniz Universität Hannover</span>
</div>
<div class="col-block">
<h3>Ludo Waltman</h3>
<span class="testimonials__pos">CWTS, Leiden University</span>
</div>
</div>
</section>
<!-- organisers' projects -->
<section class="s-clients">
<div class="row clients-outer justify-content-center block-1-4 block-m-1-2 block-mob-full" data-aos="fade-up">
<div class="col-block">
<a href="https://openscholarlymetadata.org/" title="" class="clients__slide"><img src="images/inf/openscholarlymetadata.png" alt="Research Centre for Open Scholarly Metadata" /></a>
</div>
<div class="col-block">
<a href="http://opencitations.net" title="" class="clients__slide"><img src="images/inf/oc_transparent.png" /></a>
</div>
<div class="col-block">
<a href="http://www.ficlit.unibo.it/en" title="" class="clients__slide"><img src="images/inf/ateno_red.png" /></a>
</div>
<div class="col-block">
<a href="https://barcelona-declaration.org/" title="" class="clients__slide"><img src="images/inf/barcelona_declaration.png" alt="Barcelona Declaration" /></a>
</div>
</div>
</section>
<!-- sponsors
==================================================
<section id='sponsors' class="s-services">
<div class="row section-header has-bottom-sep" data-aos="fade-up">
<div class="col-full">
<h1 class="display-2">Sponsors</h1>
</div>
</div>
<div class="row services-list block-1-2 block-tab-full">
<div class="col-block service-item" data-aos="fade-up">
<div class="service-icon">
<a href="https://europepmc.org/">
<img src="images/sponsors/europe_pmc.png"/>
</a>
</div>
</div>
<div class="col-block service-item" data-aos="fade-up">
<div class="service-icon">
<a href="https://www.wiley.com/en-it">
<img id="elife" src="images/sponsors/wiley.png"/>
</a>
</div>
</div>
</div>
</section> -->
<!-- speakers
==================================================
<section id="speakers" class="s-clients">
<div class="row section-header" data-aos="fade-up">
<div class="col-full">
<h1 class="display-2">Invited speakers</h1>
</div>
</div>
<div class="row clients-testimonials" data-aos="fade-up">
<div class="col-full">
<div class="testimonials">
<div class="testimonials__slide">
<p>Since 2015, Ginny has been developing a new team at Crossref encompassing outreach and education, user experience and support, and metadata strategy.</p>
<img src="images/organisers/ginny.jpg" alt="Author image" class="testimonials__avatar">
<div class="testimonials__info">
<span class="testimonials__name"><a href="https://twitter.com/GinnyLDN">Ginny Hendricks</a></span>
<span class="testimonials__pos">Crossref</span>
</div>
</div>
<div class="testimonials__slide">
<p>Dario is a social computing researcher and open knowledge advocate. He is the Director, Head of Research at the Wikimedia Foundation.</p>
<img src="images/organisers/dario.jpg" alt="Author image" class="testimonials__avatar">
<div class="testimonials__info">
<span class="testimonials__name"><a href="https://twitter.com/ReaderMeter">Dario Taraborelli</a></span>
<span class="testimonials__pos">Wikimedia Foundation / I4OC</span>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!-- participants
==================================================
<section id="participants" class="s-about">
<div class="row section-header has-bottom-sep" data-aos="fade-up">
<div class="col-full">
<h1 class="display-1 display-1--light">Participants</h1>
<p>To be announced ...</p>
</div>
</div>
end section-header -->
<!--<div class="row about-stats stats block-1-4 block-m-1-2 block-mob-full" data-aos="fade-up">
<div class="col-block">
<h5>Agata Rotondi</h5>
<div><span class="testimonials__pos">Research Associate, Department of Computer Science and Engineering, University of Bologna, Italy</span></div>
<div><a href="https://www.unibo.it/sitoweb/agata.rotondi2">website</a></div>
</div>
<div class="col-block">
<h5>Alessandra Auddino</h5>
<div><span class="testimonials__pos">Master student, DHDK, University of Bologna, Italy</span></div>
</div>
<div class="col-block">
<h5>Andrea Mannocci</h5>
<div><span class="testimonials__pos">Research Associate, Knowledge Media Institute - Open University, Milton Keynes, UK</span></div>
<div><a href="https://twitter.com/andremanno">@andremanno</a></div>
</div>
<div class="col-block">
<h5>Angelika Tsivinskaya</h5>
<div><span class="testimonials__pos">Researcher, Center for Institutional Analysis of Science & Education, European University at Saint Petersburg, Russia</span></div>
</div>
<div class="col-block">
<h5>Angelo Di Iorio</h5>
<div><span class="testimonials__pos">Senior Assistant Professor, Department of Computer Science and Engineering, University of Bologna, Italy</span></div>
<div><a href="https://www.unibo.it/sitoweb/angelo.diiorio/en">website</a></div>
</div>
</div>-->
<!-- <section class="s-about">
<div class="row section-header has-bottom-sep" data-aos="fade-up">
<div class="col-full">
<h3 class="subhead subhead--dark">attendees</h3>
</div>
</div>
</section> -->
<!-- photo and video
==================================================-->
<section id="photo" class="s-services">
<div class="row">
<div class="col-full">
<p id="bg"><a href="images/group_1.jpg" target="_blank"><img src="images/group_1.jpg"></a></p>
</div>
</div>
</section>
<!-- travel info
================================================== -->
<section id='venue' class="s-services">
<div class="row section-header has-bottom-sep" data-aos="fade-up">
<div class="col-full">
<h3 class="subhead">the venue</h3>
<h1 class="display-2">Welcome to Bologna</h1>
<p>The University of Bologna is the oldest university in the western world, and one of the largest universities in Italy (with about 90,000 enrolled students).</p>
<p>The workshop will take place at the University of Bologna, in the heart of the city, in two different venues.</p>
<p><strong>Day 1 will take place at the Plesso Belmeloro, Via Beniamino Andreatta, 8, Room "C".</strong></p>
<p class="map"><iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d1328.6025194709418!2d11.354334223339148!3d44.495117047064866!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x477fd4b0a4e90b39%3A0xca27122b03987eea!2sUNIBO%20Aula%20Studio%20%2F%20Plesso%20Belmeloro!5e0!3m2!1sen!2sit!4v1736242025556!5m2!1sen!2sit" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe></p>
<p><strong>Day 2 will take place at the Department of History, Cultures, and Civilization (italian translation: Dipartimento di Storia, Culture e Civiltà), Piazza S. Giovanni in Monte, 2, Room "Aula Prodi".</strong></p>
<p class="map"><iframe src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d5692.387760146274!2d11.348115!3d44.490694!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x477fd4b8ad09bd2f%3A0xf54dff048cb7cc26!2sPiazza%20S.%20Giovanni%20in%20Monte%2C%202%2C%2040124%20Bologna%20BO!5e0!3m2!1sen!2sit!4v1736242063481!5m2!1sen!2sit" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe></p>
<p>From the train station you can either walk to reach both the venues (20’/30') or take a bus by checking you route on the local public transport Tper website (<a href="https://www.tper.it/map">https://www.tper.it/map</a>) (click on the “Google Maps” suggestion if the online map gives no results).</p>
</p>
</div>
</div>
<div class="row services-list block-1-2 block-tab-full">
<div class="col-block service-item" data-aos="fade-up">
<div class="service-icon">
<i class="icon-glasses"></i>
</div>
<div class="service-text">
<h3 class="h2">Get to Bologna</h3>
<p>The airport “Guglielmo Marconi” is located at 15-20 minutes by car from the city centre. A direct train, <a href="https://www.marconiexpress.it/">Marconi Express</a>, leaves regularly from the Airport for Bologna Central Rail Station. The trip costs 11€. A taxi costs about 20€ (call a taxi at 0039 051 372727).
</p>
</div>
</div>
<div class="col-block service-item" data-aos="fade-up">
<div class="service-icon">
<i class="icon-bed"></i>
</div>
<div class="service-text">
<h3 class="h2">Accommodation</h3>
<p>The organizers are negotiating with local hotels for rooms to be reserved and made available at special rates for participants. <a href="https://docs.google.com/document/d/1nYbtCmGiyDdpDDzL0ZrWCoxXG-AXcK1fNzC6jNxDQEw/edit">Check the Hotels in Bologna.</a></p>
</div>
</div>
<div class="col-block service-item" data-aos="fade-up">
<div class="service-icon">
<i class="icon-building"></i>
</div>
<div class="service-text">
<h3 class="h2">About the location</h3>
<p><a href="https://youtu.be/ObBreSoNzZY">Bologna</a> is home to numerous prestigious cultural, economic and political institutions as well as one of the most impressive trade fair districts in Europe. In 2000 it was declared European capital of culture, and in 2006, a UNESCO "city of music". Bologna’s porticoes have been listed in the UNESCO World Heritage List in 2021.
</p>
</div>
</div>
</div>
</section>
<!-- contact
================================================== -->
<section id="contact" class="s-contact">
<div class="overlay"></div>
<!--<div class="contact__line"></div>-->
<div class="row section-header" data-aos="fade-up">
<div class="col-full">
<h3 class="subhead">For any enquiry</h3>
<h1 class="display-2 display-2--light">contact us</h1>
</div>
</div>
<div class="row contact-content" data-aos="fade-up">
<div class="contact-primary">
<div class="contact-info">
<h3 class="h6 hide-on-fullwidth">Contact Info</h3>
<div class="cinfo">
<h5>Where to Find Us</h5>
<p>
via Zamboni, 32 (first floor) | Bologna, BO | 40126 Italy
</p>
</div>
<div class="cinfo">
<h5>Any Doubt?</h5>
<p>open an issue on
<a href="https://github.com/workshop-oc/workshop-oc.github.io/issues">github</a>!<br>
</p>
</div>
<div class="cinfo">
<h5>Email Us</h5>
<p><a href="mailto:comms@opencitations.net">comms@opencitations.net</a></p>
</div>
</div> <!-- end contact-info -->
</div> <!-- end contact-secondary -->
</div> <!-- end contact-content -->
</section> <!-- end s-contact -->
<!-- footer
================================================== -->
<footer>
<!-- <div class="row footer-main">
<div class="col-six tab-full left footer-desc">
<div class="footer-logo"></div>
Proin eget tortor risus. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Nulla porttitor accumsan tincidunt. Nulla porttitor accumsan tincidunt. Quaerat voluptas autem necessitatibus vitae aut.
</div>
<div class="col-six tab-full right footer-subscribe">
<h4>Get Notified</h4>
<p>Quia quo qui sed odit. Quaerat voluptas autem necessitatibus vitae aut non alias sed quia. Ut itaque enim optio ut excepturi deserunt iusto porro.</p>
<div class="subscribe-form">
<form id="mc-form" class="group" novalidate="true">