-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
2213 lines (1829 loc) · 136 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Jussieu Call</title>
<!-- meta -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Jussieu Call, Open Access, Innovation" />
<!-- css -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/ionicons.min.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/owl.carousel.css">
<link rel="stylesheet" href="css/owl.theme.css">
<link rel="stylesheet" href="css/owl.transitions.css">
<link rel="stylesheet" href="css/animate.css">
<link rel="stylesheet" href="css/custom.css">
<!-- js -->
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/owl.carousel.min.js"></script>
<script src="js/isotope.pkgd.min.js"></script>
<script src="js/script.js"></script>
<script src="js/wow.min.js"></script>
<script src="js/jquery.actual.min.js"></script>
</head>
<body>
<div id="wrapper">
<div id="overlay-1">
<section id= "navigation">
<nav class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="ion-navicon"></span>
</button>
<a class="navbar-brand" href="#">Jussieu Call</a>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li><a href="#our_service" title="read">Read Call</a></li>
<li><a href="#team" title="sign">Sign it</a></li>
<li><a href="support.html">Support</a></li>
<li><a href="#contact" title="contact">Contact</a></li>
<li> <a href="index-FR.html" title="french version">
<img src="img/fr.png" alt="french" /> </a><li>
<li> <a href="index-DE.html" title="german version">
<img src="img/de.png" alt="german" /> </a><li>
<li> <a href="index-ES.html" title="Spanish version">
<img src="img/es.png" alt="Spanish" /> </a><li>
</ul>
</div> <!-- collapse navbar-collapse -->
</div> <!-- container-fluid -->
</nav> <!-- navbar -->
</section> <!-- #navigation -->
<section id="starting">
<div class="text-center starting-text">
<!-- <h1 class="rene">Open Access</h1>-->
<h2>Jussieu Call </h2><h2>for Open science and bibliodiversity</h2>
</div>
</section>
<div id="bottom" class="bottom text-center">
<a href="#about"><i class="ion-ios7-arrow-down"></i></a>
</div>
</div><!-- overlay-1 -->
</div> <!-- wrapper -->
<!-- About Us -->
<section id="about">
<div class="container">
<div class="row text-center" id="heading">
<div class="col-md-offset-1 col-md-10 col-md-offset-1" id="heading-text">
<p>This Call was drafted on the campus Jussieu in Paris by a French group comprising researchers and scientific publishing professionals working together in Open Access and Public Scientific Publishing task forces of BSN (Bibliothèque scientifique numérique, or Digital Scientific Library).</p>
<br/>
</div>
</div> <!-- row -->
<div class="row about-us-text">
<div class="col-md-offset-1 col-md-10 col-md-offset-1">
<p class="text-center">This Call is aimed at scientific communities, professional associations and research institutions to promote a scientific publishing open-access model fostering bibliodiversity and innovation without involving the exclusive transfer of journal subscription monies to APC payments.</p>
<hr class="full">
</div>
</div> <!-- row -->
</div> <!-- container -->
</section> <!-- about us -->
<!-- Our service -->
<section id="our_service">
<div class="container">
<div class="row text-center" id= "heading">
<div class="col-md-12 wow animated zoomInDown" id= "heading-text">
<h3>Jussieu Call for Open science and bibliodiversity</h3>
<p>As asserted in the
<a href="https://www.government.nl/topics/science/documents/reports/2016/04/04/amsterdam-call-for-action-on-open-science" title="Amsterdam Call for Action on Open Science" target="_blank">Amsterdam Call released in 2016</a>, Open Access to scientific publishing is at a crossroads. After several years of an exacting struggle aiming at persuading somewhat skeptical stakeholders, Open Access has now won strong support and a rapid shift of the scientific communication system to an Open Access publishing model can be expected.<a href="https://web.archive.org/web/20161007111302/http://english.eu2016.nl:80/binaries/eu2016-en/documents/press-releases/2016/05/27/all-european-scientific-articles-to-be-freely-accessible-by-2020/press-release-all-european-scientific-articles-to-be-freely.pdf" title="All European scientific articles to be freely accessible by 2020" target="_blank"> “The time for talking about open access is now past”.</a></p>
<p>The means to achieve the goal of Open Access are yet to be discussed. We believe that the issue of business models has to be refocused in the broader perspective of the <a href="http://www.sens-public.org/article1059.html " target="_blank"> editorial processes and methods</a> upon which research and innovation will rely in the future and that they may only develop for the benefit of a very broad bibliodiversity.</p>
<p>We find it necessary to foster an Open Access model that is not restricted to a single approach based on the transfer of subscriptions towards APCs (publication fees charged to authors to allow free access to their articles). Such an approach would hamper innovation and otherwise would slow if not check the advent of bibliodiversity. Therefore, we adhere to the Joint Statement of UNESCO and the <a href="https://www.coar-repositories.org/news-media/coar-and-unesco-joint-statement-about-open-access/" title="Joint COAR-UNESCO Statement on Open Access" target="_blank">Confederation of Open Access Repositories (COAR) </a> on Open Access which highlights all the difficulties caused by this single model. </p>
<p>Our goal is thus to develop and implement alternative models matching the aims of open science by asserting the need of supporting innovation for a thorough renewal of publishing functions as proclaimed by the <a href="http://libereurope.eu/wp-content/uploads/2016/05/Statement-on-the-Amsterdam-Call-for-Action.pdf" title="LIBER Statement on the Amsterdam Call for Action:" target="_blank">Association of European Research Libraries (LIBER</a>) and the <a href="https://www.icsu.org/publications/open-access-to-scientific-data-and-literature-and-the-assessment-of- research-by-metrics" title="Open access to scientific data and literature and the assessment of research by metrics:" target="_blank">International Council for Science (ICSU)</a></p>
</div>
<hr class="full">
<div class="col-md-12" id= "call-text">
<h3>We, stakeholders of Open Access scientific publishing, hereby claim that:</h3>
<h3>1</h3>
<p>Open Access must be complemented by support for the diversity of those acting in scientific publishing – what we call bibliodiversity – putting an end to the dominance of a small number among us imposing their terms to scientific communities;</p>
<h3>2</h3>
<p>the development of innovative scientific publishing models must be a budget priority because it represents an investment into services meeting the genuine needs of researchers in our digital age;</p>
<h3>3</h3>
<p>experiments should be encouraged in writing practices (publishing associated data), refereeing (open peer-reviewing), content editorial services (beyond-pdf web publishing) and additional services (text mining); </p>
<h3>4</h3>
<p>the research evaluation system should be thoroughly reformed and adapted to the practices of scientific communication;</p>
<h3>5</h3>
<p>more investment efforts in open source tools upon which these innovative practices are based should be made and coordinated;</p>
<h3>6</h3>
<p>the scientific community needs a secure and stable body of law across different countries to facilitate the availability of text mining services and thus strengthen their use;</p>
<h3>7</h3>
<p>the scientific communities must be able to access national and international infrastructures which guarantee the preservation and circulation of knowledge against any privatization of contents. Business models should be found which preserve their long-term continuity; </p>
<h3>8</h3>
<p>priority should be given to business models that do not involve any payments, neither for authors to have their texts published nor for readers to access them. Many fair funding models exist and only require to be further developed and extended: institutional support, library contributions or subsidies, premium services, participatory funding or creation of open archives, etc. </p>
<hr class="full">
</div>
<div class="col-md-12" id= "heading-text">
<p>We endorse the clear message to the scientific community at large released by the<a href="http://www.leru.org/index.php/public/extra/signtheLERUstatement/" title="Christmas is over. Research funding should go to research, not to publishers!:" target="_blank"> League of European Research Universities (LERU)</a>: Research funding should go to research, not to publishers! This is why current journal subscription spendings should be changed into investments enabling the scientific community to regain control over the publishing system and not merely into new spendings only earmarked to pay the publication fees for researchers to commercial publishers.</p>
<p>We call on creating an international consortium of stakeholders whose primary aim should be to pool local and national initiatives or to build an operational framework to fund open access publishing, innovation and sharing of resulting developments. We call on research organizations and their libraries to secure and earmark as of now a share of their acquisition budgets to support the development of scientific publishing activities, which are genuinely open and innovative, and address the needs of the scientific community.</p>
<hr class= "full">
</div>
<div class= "post-share">
<p>Share this post:
<a href="https://twitter.com/JussieuCall?lang=fr" data-toggle="tooltip" title="JussieuCall on Twitter" class="team-twitter" target="_blank"><i class="fa fa-twitter"></i></a></p>
</div>
<div class="col-md-12" id= "redact-text">
<h2>Contributors : </h2>
<p>Serge BAUIN; Céline BARTHONNAT; Christine BERTHAUD; Thierry BOUCHE; Francois CAVALIER; Gregory COLCANAP; Odile CONTAT; Nathalie FARGIER; Thierry FOURNIER; Anne-Solweig GREMILLET; Frédéric HÉLEIN; Odile HOLOGNE; Emmanuelle JANNES-OBER; Jacques LAFAIT; Annie LE BLANC; Jean François LUTZ; Sandrine MALOTAUX; Jacques MILLET; Pierre MOUNIER; Jean-Francois NOMINÉ; Christine OKRET-MANVILLE; Christine OLLENDORFF; Sébastien RESPINGUE-PERRIN; Julien ROCHE; Laurent ROMARY; Dominique ROUX; Joachim SCHOPFEL; Bernard TEISSIER; Armelle THOMAS; Céline VAUTRIN</p>
</div>
</div>
</div> <!-- container -->
</section> <!-- our_service -->
<!-- LES SIGNATAIRES -->
<section id="team">
<div class="container">
<div class="team-members">
<div class="row text-center" id="heading">
<div class="col-md-12 wow animated zoomInDown" id="heading-text">
<h3>Signing Institutions: </h3>
<!-- <p>The signing process of the Call is currently underway. The list of signing institutions will be added shortly.</p>
<p>The signatories’names, institution title and logo will then be displayed on this page as their approval is received.</p>-->
<hr class="full">
</div>
</div>
<!-- recherche -->
<div class="row main_content">
<h3>Research institutions and scientific communities </h3>
<!-- signature -->
<div class="col-md-3 col-sm-4 text-center" >
<div class="blocsign">
<div class="logo" data-wow-delay="0.1s">
<div class= "col-md-8 col-md-offset-2" >
<img class="img-responsive center-block" src="img/logo100/clacso_logo.jpg" alt="CLACSO">
</div>
</div>
<h4 class= "wow animated fadeInUp" data-wow-delay= "0.7s">CLACSO </h4>
<p class= "member-title wow animated fadeIn" data-wow-delay= "0.8s">Consejo Latinoamericano de Ciencias Sociales / Latin American Council of Social Sciences - <span class="country">Latin America</span></p>
<span class="team-member-description wow animated fadeIn">10/10/2017 </span>
</div>
</div>
<!-- signature fin -->
<!-- signature -->
<div class="col-md-3 col-sm-4 text-center" >
<div class="blocsign">
<div class="logo" data-wow-delay="0.1s">
<div class= "col-md-8 col-md-offset-2" >
<img class="img-responsive center-block" src="img/logo100/Ifsttar-logo.jpg" alt="Institut français des sciences et technologies des transports, de l'aménagement et des réseaux">
</div>
</div>
<h4 class= "wow animated fadeInUp" data-wow-delay= "0.7s">IFSTTAR</h4>
<p class= "member-title wow animated fadeIn" data-wow-delay= "0.8s">Institut français des sciences et technologies des transports, de l'aménagement et des réseaux - <span class="country">France</span></p>
<span class="team-member-description wow animated fadeIn">10/10/2017 </span>
</div>
</div>
<!-- signature fin -->
<!-- signature -->
<div class="col-md-3 col-sm-4 text-center" >
<div class="blocsign">
<div class="logo" data-wow-delay="0.1s">
<div class= "col-md-8 col-md-offset-2" >
<img class="img-responsive center-block" src="img/logo100/irstea_logo.jpg" alt="IRSTEA">
</div>
</div>
<h4 class= "wow animated fadeInUp" data-wow-delay= "0.7s">IRSTEA</h4>
<p class= "member-title wow animated fadeIn" data-wow-delay= "0.8s">Institut national de recherche en sciences et technologies pour l’environnement et l’agriculture - <span class="country">France</span></p>
<span class="team-member-description wow animated fadeIn">12/10/2017 </span>
</div>
</div>
<!-- signature fin -->
<!-- signature -->
<div class="col-md-3 col-sm-4 text-center" >
<div class="blocsign">
<div class="logo" data-wow-delay="0.1s">
<div class= "col-md-8 col-md-offset-2" >
<img class="img-responsive center-block" src="img/logo100/UniversiteLorraine_LOGO.jpg" alt="Université de Lorraine">
</div>
</div>
<h4 class= "wow animated fadeInUp" data-wow-delay= "0.7s">UL</h4>
<p class= "member-title wow animated fadeIn" data-wow-delay= "0.8s">Université de Lorraine - <span class="country">France</span></p>
<span class="team-member-description wow animated fadeIn">12/10/2017 </span>
</div>
</div>
<!-- signature fin -->
<!-- signature -->
<div class="col-md-3 col-sm-4 text-center" >
<div class="blocsign">
<div class="logo" data-wow-delay="0.1s">
<div class= "col-md-8 col-md-offset-2" >
<img class="img-responsive center-block" src="img/logo100/CPU_logo.jpg" alt="Conférence des présidents d'université">
</div>
</div>
<h4 class= "wow animated fadeInUp" data-wow-delay= "0.7s">CPU</h4>
<p class= "member-title wow animated fadeIn" data-wow-delay= "0.8s">Conférence des présidents d'université - <span class="country">France</span></p>
<span class="team-member-description wow animated fadeIn">13/10/2017 </span>
</div>
</div>
<!-- signature fin -->
<!-- signature -->
<div class="col-md-3 col-sm-4 text-center" >
<div class="blocsign">
<div class="logo" data-wow-delay="0.1s">
<div class= "col-md-8 col-md-offset-2" >
<img class="img-responsive center-block" src="img/logo100/CLAMOR_logo.jpg" alt="Centre pour les humanités numériques et l'histoire de la justice">
</div>
</div>
<h4 class= "wow animated fadeInUp" data-wow-delay= "0.7s">CLAMOR</h4>
<p class= "member-title wow animated fadeIn" data-wow-delay= "0.8s">Centre pour les humanités numériques et l'histoire de la justice - <span class="country">France</span></p>
<span class="team-member-description wow animated fadeIn">14/10/2017 </span>
</div>
</div>
<!-- signature fin -->
<!-- signature -->
<div class="col-md-3 col-sm-4 text-center" >
<div class="blocsign">
<div class="logo" data-wow-delay="0.1s">
<div class= "col-md-8 col-md-offset-2" >
<img class="img-responsive center-block" src="img/logo100/cirad_logo.jpg" alt="Centre de coopération international en recherche agronomique pour le développement">
</div>
</div>
<h4 class= "wow animated fadeInUp" data-wow-delay= "0.7s">CIRAD</h4>
<p class= "member-title wow animated fadeIn" data-wow-delay= "0.8s">Centre de coopération international en recherche agronomique pour le développement - <span class="country">France</span></p>
<span class="team-member-description wow animated fadeIn">16/10/2017 </span>
</div>
</div>
<!-- signature fin -->
<!-- signature -->
<div class="col-md-3 col-sm-4 text-center" >
<div class="blocsign">
<div class="logo" data-wow-delay="0.1s">
<div class= "col-md-8 col-md-offset-2" >
<img class="img-responsive center-block" src="img/logo100/agreenium_logo_cmjn.jpg" alt="Institut agronomique, vétérinaire et forestier de France">
</div>
</div>
<h4 class= "wow animated fadeInUp" data-wow-delay= "0.7s">Agreenium</h4>
<p class= "member-title wow animated fadeIn" data-wow-delay= "0.8s">Institut agronomique, vétérinaire et forestier de France - <span class="country">France</span></p>
<span class="team-member-description wow animated fadeIn">17/10/2017 </span>
</div>
</div>
<!-- signature fin -->
<!-- signature -->
<div class="col-md-3 col-sm-4 text-center" >
<div class="blocsign">
<div class="logo" data-wow-delay="0.1s">
<div class= "col-md-8 col-md-offset-2" >
<img class="img-responsive center-block" src="img/logo100/grenoble_alpes.jpg" alt="Université Grenoble Alpes">
</div>
</div>
<h4 class= "wow animated fadeInUp" data-wow-delay= "0.7s">Université Grenoble Alpes</h4>
<p class= "member-title wow animated fadeIn" data-wow-delay= "0.8s">Université Grenoble Alpes - <span class="country">France</span></p>
<span class="team-member-description wow animated fadeIn">19/10/2017 </span>
</div>
</div>
<!-- signature fin -->
<!-- signature -->
<div class="col-md-3 col-sm-4 text-center" >
<div class="blocsign">
<div class="logo" data-wow-delay="0.1s">
<div class= "col-md-8 col-md-offset-2" >
<img class="img-responsive center-block" src="img/logo100/inria_logo_fr_rouge_300.jpg" alt="Institut national de recherche en informatique et en automatique">
</div>
</div>
<h4 class= "wow animated fadeInUp" data-wow-delay= "0.7s">Inria</h4>
<p class= "member-title wow animated fadeIn" data-wow-delay= "0.8s">Institut national de recherche en informatique et en automatique - <span class="country">France</span></p>
<span class="team-member-description wow animated fadeIn">20/10/2017 </span>
</div>
</div>
<!-- signature fin -->
<!-- signature -->
<div class="col-md-3 col-sm-4 text-center" >
<div class="blocsign">
<div class="logo" data-wow-delay="0.1s">
<div class= "col-md-8 col-md-offset-2" >
<img class="img-responsive center-block" src="img/logo100/upmc.jpg" alt="Université Pierre et Marie Curie">
</div>
</div>
<h4 class= "wow animated fadeInUp" data-wow-delay= "0.7s">UPMC</h4>
<p class= "member-title wow animated fadeIn" data-wow-delay= "0.8s">Université Pierre et Marie Curie - <span class="country">France</span></p>
<span class="team-member-description wow animated fadeIn">21/10/2017 </span>
</div>
</div>
<!-- signature fin -->
<!-- signature -->
<div class="col-md-3 col-sm-4 text-center" >
<div class="blocsign">
<div class="logo" data-wow-delay="0.1s">
<div class= "col-md-8 col-md-offset-2" >
<img class="img-responsive center-block" src="img/logo100/INRA_logo.jpg" alt="Institut national de la recherche agronomique">
</div>
</div>
<h4 class= "wow animated fadeInUp" data-wow-delay= "0.7s">INRA</h4>
<p class= "member-title wow animated fadeIn" data-wow-delay= "0.8s">Institut national de la recherche agronomique - <span class="country">France</span></p>
<span class="team-member-description wow animated fadeIn">23/10/2017 </span>
</div>
</div>
<!-- signature fin -->
<!-- signature -->
<div class="col-md-3 col-sm-4 text-center" >
<div class="blocsign">
<div class="logo" data-wow-delay="0.1s">
<div class= "col-md-8 col-md-offset-2" >
<img class="img-responsive center-block" src="img/logo100/LogoCPDirSIC.png" alt="Conférence permanente des directeurs-trices de laboratoires en sciences de l'information et de la communication">
</div>
</div>
<h4 class= "wow animated fadeInUp" data-wow-delay= "0.7s">CPDirSIC</h4>
<p class= "member-title wow animated fadeIn" data-wow-delay= "0.8s">Conférence permanente des directeurs-trices de laboratoires en sciences de l'information et de la communication - <span class="country">France</span></p>
<span class="team-member-description wow animated fadeIn">24/10/2017 </span>
</div>
</div>
<!-- signature fin -->
<!-- signature -->
<div class="col-md-3 col-sm-4 text-center" >
<div class="blocsign">
<div class="logo" data-wow-delay="0.1s">
<div class= "col-md-8 col-md-offset-2" >
<img class="img-responsive center-block" src="img/logo100/CEDEFI_Logo.jpg" alt="Conférence des directeurs des écoles françaises d’ingénieurs">
</div>
</div>
<h4 class= "wow animated fadeInUp" data-wow-delay= "0.7s">CDEFI</h4>
<p class= "member-title wow animated fadeIn" data-wow-delay= "0.8s">Conférence des directeurs des écoles françaises d’ingénieurs (206 écoles) - <span class="country">France</span></p>
<span class="team-member-description wow animated fadeIn">25/10/2017 </span>
</div>
</div>
<!-- signature fin -->
<!-- signature -->
<div class="col-md-3 col-sm-4 text-center" >
<div class="blocsign">
<div class="logo" data-wow-delay="0.1s">
<div class= "col-md-8 col-md-offset-2" >
<img class="img-responsive center-block" src="img/logo100/UnivLille_logo.jpg" alt="Université de Lille">
</div>
</div>
<h4 class= "wow animated fadeInUp" data-wow-delay= "0.7s">Université de Lille</h4>
<p class= "member-title wow animated fadeIn" data-wow-delay= "0.8s">Université de Lille - <span class="country">France</span></p>
<span class="team-member-description wow animated fadeIn">26/10/2017 </span>
</div>
</div>
<!-- signature fin -->
<!-- signature -->
<div class="col-md-3 col-sm-4 text-center" >
<div class="blocsign">
<div class="logo" data-wow-delay="0.1s">
<div class= "col-md-8 col-md-offset-2" >
<img class="img-responsive center-block" src="img/logo100/SciencesPo_logo.png" alt="Institut d'études politiques de Paris">
</div>
</div>
<h4 class= "wow animated fadeInUp" data-wow-delay= "0.7s">Sciences Po</h4>
<p class= "member-title wow animated fadeIn" data-wow-delay= "0.8s">Institut d'études politiques de Paris - <span class="country">France</span></p>
<span class="team-member-description wow animated fadeIn">27/10/2017 </span>
</div>
</div>
<!-- signature fin -->
<!-- signature -->
<div class="col-md-3 col-sm-4 text-center" >
<div class="blocsign">
<div class="logo" data-wow-delay="0.1s">
<div class= "col-md-8 col-md-offset-2" >
<img class="img-responsive center-block" src="img/logo100/Universite%20Bordea_logo.jpg" alt="Université de Bordeaux">
</div>
</div>
<h4 class= "wow animated fadeInUp" data-wow-delay= "0.7s">Université de Bordeaux</h4>
<p class= "member-title wow animated fadeIn" data-wow-delay= "0.8s">Université de Bordeaux - <span class="country">France</span></p>
<span class="team-member-description wow animated fadeIn">27/10/2017 </span>
</div>
</div>
<!-- signature fin -->
<!-- signature -->
<div class="col-md-3 col-sm-4 text-center" >
<div class="blocsign">
<div class="logo" data-wow-delay="0.1s">
<div class= "col-md-8 col-md-offset-2" >
<img class="img-responsive center-block" src="img/logo100/cge.png" alt="Conférence des Grandes Écoles">
</div>
</div>
<h4 class= "wow animated fadeInUp" data-wow-delay= "0.7s">CGE</h4>
<p class= "member-title wow animated fadeIn" data-wow-delay= "0.8s">Conférence des Grandes Écoles - <span class="country">France</span></p>
<span class="team-member-description wow animated fadeIn">27/10/2017 </span>
</div>
</div>
<!-- signature fin -->
<!-- signature -->
<div class="col-md-3 col-sm-4 text-center" >
<div class="blocsign">
<div class="logo" data-wow-delay="0.1s">
<div class= "col-md-8 col-md-offset-2" >
<img class="img-responsive center-block" src="img/logo100/CWI.png" alt="CWI">
</div>
</div>
<h4 class= "wow animated fadeInUp" data-wow-delay= "0.7s">CWI</h4>
<p class= "member-title wow animated fadeIn" data-wow-delay= "0.8s">Centrum Wiskunde & Informatica (National Research Institute for Mathematics and Computer Science) - <span class="country">Netherlands</span></p>
<span class="team-member-description wow animated fadeIn">30/10/2017 </span>
</div>
</div>
<!-- signature fin -->
<!-- signature -->
<div class="col-md-3 col-sm-4 text-center" >
<div class="blocsign">
<div class="logo" data-wow-delay="0.1s">
<div class= "col-md-8 col-md-offset-2" >
<img class="img-responsive center-block" src="img/logo100/IRD.jpg" alt="IRD">
</div>
</div>
<h4 class= "wow animated fadeInUp" data-wow-delay= "0.7s">IRD</h4>
<p class= "member-title wow animated fadeIn" data-wow-delay= "0.8s">Institut de recherche pour le développement - <span class="country">France</span></p>
<span class="team-member-description wow animated fadeIn">31/10/2017 </span>
</div>
</div>
<!-- signature fin -->
<!-- signature -->
<div class="col-md-3 col-sm-4 text-center" >
<div class="blocsign">
<div class="logo" data-wow-delay="0.1s">
<div class= "col-md-8 col-md-offset-2" >
<img class="img-responsive center-block" src="img/logo100/ERCIM_logo.jpg" alt="ERCIM">
</div>
</div>
<h4 class= "wow animated fadeInUp" data-wow-delay= "0.7s">ERCIM</h4>
<p class= "member-title wow animated fadeIn" data-wow-delay= "0.8s">European Research Consortium for Informatics and Mathematics - <span class="country">Europe</span></p>
<span class="team-member-description wow animated fadeIn">04/11/2017 </span>
</div>
</div>
<!-- signature fin -->
<!-- signature -->
<div class="col-md-3 col-sm-4 text-center" >
<div class="blocsign">
<div class="logo" data-wow-delay="0.1s">
<div class= "col-md-8 col-md-offset-2" >
<img class="img-responsive center-block" src="img/logo100/ifremer.png" alt="Ifremer">
</div>
</div>
<h4 class= "wow animated fadeInUp" data-wow-delay= "0.7s">Ifremer</h4>
<p class= "member-title wow animated fadeIn" data-wow-delay= "0.8s">Institut français de recherche pour l'exploitation de la mer - <span class="country">France</span></p>
<span class="team-member-description wow animated fadeIn">06/11/2017 </span>
</div>
</div>
<!-- signature fin -->
<!-- signature -->
<div class="col-md-3 col-sm-4 text-center" >
<div class="blocsign">
<div class="logo" data-wow-delay="0.1s">
<div class= "col-md-8 col-md-offset-2" >
<img class="img-responsive center-block" src="img/logo100/inp-toulouse_logo.jpg" alt="Toulouse INP ">
</div>
</div>
<h4 class= "wow animated fadeInUp" data-wow-delay= "0.7s">Toulouse INP </h4>
<p class= "member-title wow animated fadeIn" data-wow-delay= "0.8s">Institut National Polytechnique de Toulouse - <span class="country">France</span></p>
<span class="team-member-description wow animated fadeIn">06/11/2017 </span>
</div>
</div>
<!-- signature fin -->
<!-- signature -->
<div class="col-md-3 col-sm-4 text-center" >
<div class="blocsign">
<div class="logo" data-wow-delay="0.1s">
<div class= "col-md-8 col-md-offset-2" >
<img class="img-responsive center-block" src="img/logo100/agroparistech.png" alt="AgroParisTech ">
</div>
</div>
<h4 class= "wow animated fadeInUp" data-wow-delay= "0.7s">AgroParisTech </h4>
<p class= "member-title wow animated fadeIn" data-wow-delay= "0.8s">Institut des sciences et industries du vivant et de l'environnement - <span class="country">France</span></p>
<span class="team-member-description wow animated fadeIn">10/11/2017 </span>
</div>
</div>
<!-- signature fin -->
<!-- signature -->
<div class="col-md-3 col-sm-4 text-center" >
<div class="blocsign">
<div class="logo" data-wow-delay="0.1s">
<div class= "col-md-8 col-md-offset-2" >
<img class="img-responsive center-block" src="img/logo100/Univ_Rennes2_logo.png" alt="Université Rennes 2">
</div>
</div>
<h4 class= "wow animated fadeInUp" data-wow-delay= "0.7s">Université Rennes 2</h4>
<p class= "member-title wow animated fadeIn" data-wow-delay= "0.8s"><span class="country">France</span></p>
<span class="team-member-description wow animated fadeIn">13/11/2017 </span>
</div>
</div>
<!-- signature fin -->
<!-- signature -->
<div class="col-md-3 col-sm-4 text-center" >
<div class="blocsign">
<div class="logo" data-wow-delay="0.1s">
<div class= "col-md-8 col-md-offset-2" >
<img class="img-responsive center-block" src="img/logo100/univ_Liege_logo.jpg" alt="Université de Liège">
</div>
</div>
<h4 class= "wow animated fadeInUp" data-wow-delay= "0.7s">Université de Liège</h4>
<p class= "member-title wow animated fadeIn" data-wow-delay= "0.8s"><span class="country">Belgique</span></p>
<span class="team-member-description wow animated fadeIn">13/11/2017 </span>
</div>
</div>
<!-- signature fin -->
<!-- signature -->
<div class="col-md-3 col-sm-4 text-center" >
<div class="blocsign">
<div class="logo" data-wow-delay="0.1s">
<div class= "col-md-8 col-md-offset-2" >
<img class="img-responsive center-block" src="img/logo100/ENS_logo.jpg" alt="ENS">
</div>
</div>
<h4 class= "wow animated fadeInUp" data-wow-delay= "0.7s">ENS</h4>
<p class= "member-title wow animated fadeIn" data-wow-delay= "0.8s">Ecole Normale Supérieure - <span class="country">France</span></p>
<span class="team-member-description wow animated fadeIn">14/11/2017 </span>
</div>
</div>
<!-- signature fin -->
<!-- signature -->
<div class="col-md-3 col-sm-4 text-center" >
<div class="blocsign">
<div class="logo" data-wow-delay="0.1s">
<div class= "col-md-8 col-md-offset-2" >
<img class="img-responsive center-block" src="img/logo100/AMU_logo.png" alt="AMU">
</div>
</div>
<h4 class= "wow animated fadeInUp" data-wow-delay= "0.7s">AMU</h4>
<p class= "member-title wow animated fadeIn" data-wow-delay= "0.8s">Aix-Marseille Université - <span class="country">France</span></p>
<span class="team-member-description wow animated fadeIn">15/11/2017 </span>
</div>
</div>
<!-- signature fin -->
<!-- signature -->
<div class="col-md-3 col-sm-4 text-center" >
<div class="blocsign">
<div class="logo" data-wow-delay="0.1s">
<div class= "col-md-8 col-md-offset-2" >
<img class="img-responsive center-block" src="img/logo100/Arts_et_Metiers_ParisTech_logo.png" alt="Ecole Nationale Supérieure d'Arts et Métiers">
</div>
</div>
<h4 class= "wow animated fadeInUp" data-wow-delay= "0.7s">ENSAM</h4>
<p class= "member-title wow animated fadeIn" data-wow-delay= "0.8s">Ecole Nationale Supérieure d'Arts et Métiers - <span class="country">France</span></p>
<span class="team-member-description wow animated fadeIn">17/11/2017 </span>
</div>
</div>
<!-- signature fin -->
<!-- signature -->
<div class="col-md-3 col-sm-4 text-center" >
<div class="blocsign">
<div class="logo" data-wow-delay="0.1s">
<div class= "col-md-8 col-md-offset-2" >
<img class="img-responsive center-block" src="img/logo100/CIHEAM_logo.png" alt="CIHEAM - IAMM">
</div>
</div>
<h4 class= "wow animated fadeInUp" data-wow-delay= "0.7s">CIHEAM - IAMM</h4>
<p class= "member-title wow animated fadeIn" data-wow-delay= "0.8s">Institut Agronomique Méditerranéen de Montpellier - <span class="country">France</span></p>
<span class="team-member-description wow animated fadeIn">20/11/2017 </span>
</div>
</div>
<!-- signature fin -->
<!-- signature -->
<div class="col-md-3 col-sm-4 text-center" >
<div class="blocsign">
<div class="logo" data-wow-delay="0.1s">
<div class= "col-md-8 col-md-offset-2" >
<img class="img-responsive center-block" src="img/logo100/UTFTMP_logo.png" alt="UTFTMP">
</div>
</div>
<h4 class= "wow animated fadeInUp" data-wow-delay= "0.7s">UTFTMP</h4>
<p class= "member-title wow animated fadeIn" data-wow-delay= "0.8s">Université Fédérale de Toulouse Midi-Pyrénées - <span class="country">France</span></p>
<span class="team-member-description wow animated fadeIn">21/11/2017 </span>
</div>
</div>
<!-- signature fin -->
<!-- signature -->
<div class="col-md-3 col-sm-4 text-center" >
<div class="blocsign">
<div class="logo" data-wow-delay="0.1s">
<div class= "col-md-8 col-md-offset-2" >
<img class="img-responsive center-block" src="img/logo100/cnrs.png" alt="CNRS">
</div>
</div>
<h4 class= "wow animated fadeInUp" data-wow-delay= "0.7s">CNRS</h4>
<p class= "member-title wow animated fadeIn" data-wow-delay= "0.8s">Centre National de la Recherche Scientifique - <span class="country">France</span></p>
<span class="team-member-description wow animated fadeIn">21/11/2017 </span>
</div>
</div>
<!-- signature fin -->
<!-- signature -->
<div class="col-md-3 col-sm-4 text-center" >
<div class="blocsign">
<div class="logo" data-wow-delay="0.1s">
<div class= "col-md-8 col-md-offset-2" >
<img class="img-responsive center-block" src="img/logo100/USPC_logo.png" alt="Université Sorbone Paris Cité">
</div>
</div>
<h4 class= "wow animated fadeInUp" data-wow-delay= "0.7s">USPC</h4>
<p class= "member-title wow animated fadeIn" data-wow-delay= "0.8s">Université Sorbone Paris Cité - <span class="country">France</span></p>
<span class="team-member-description wow animated fadeIn">21/11/2017 </span>
</div>
</div>
<!-- signature fin -->
<!-- signature -->
<div class="col-md-3 col-sm-4 text-center" >
<div class="blocsign">
<div class="logo" data-wow-delay="0.1s">
<div class= "col-md-8 col-md-offset-2" >
<img class="img-responsive center-block" src="img/logo100/UCA_logo.png" alt="Université Côte d'Azur">
</div>
</div>
<h4 class= "wow animated fadeInUp" data-wow-delay= "0.7s">UCA</h4>
<p class= "member-title wow animated fadeIn" data-wow-delay= "0.8s">Université Côte d'Azur - <span class="country">France</span></p>
<span class="team-member-description wow animated fadeIn">22/11/2017 </span>
</div>
</div>
<!-- signature fin -->
<!-- signature -->
<div class="col-md-3 col-sm-4 text-center" >
<div class="blocsign">
<div class="logo" data-wow-delay="0.1s">
<div class= "col-md-8 col-md-offset-2" >
<img class="img-responsive center-block" src="img/logo100/ENS_paris_saclay_logo.png" alt="ENS Paris-Saclay">
</div>
</div>
<h4 class= "wow animated fadeInUp" data-wow-delay= "0.7s">ENS Paris-Saclay</h4>
<p class= "member-title wow animated fadeIn" data-wow-delay= "0.8s">Ecole normale supérieure Paris-Saclay - <span class="country">France</span></p>
<span class="team-member-description wow animated fadeIn">24/11/2017 </span>
</div>
</div>
<!-- signature fin -->
<!-- signature -->
<div class="col-md-3 col-sm-4 text-center" >
<div class="blocsign">
<div class="logo" data-wow-delay="0.1s">
<div class= "col-md-8 col-md-offset-2" >
<img class="img-responsive center-block" src="img/logo100/universiteMontreal_logo.png" alt="Université de Montréal">
</div>
</div>
<h4 class= "wow animated fadeInUp" data-wow-delay= "0.7s">Université de Montréal</h4>
<p class= "member-title wow animated fadeIn" data-wow-delay= "0.8s"><span class="country">Canada</span></p>
<span class="team-member-description wow animated fadeIn">28/11/2017 </span>
</div>
</div>
<!-- signature fin -->
<!-- signature -->
<div class="col-md-3 col-sm-4 text-center" >
<div class="blocsign">
<div class="logo" data-wow-delay="0.1s">
<div class= "col-md-8 col-md-offset-2" >
<img class="img-responsive center-block" src="img/logo100/RnMSH_logo.png" alt="RnMSH">
</div>
</div>
<h4 class= "wow animated fadeInUp" data-wow-delay= "0.7s">RnMSH</h4>
<p class= "member-title wow animated fadeIn" data-wow-delay= "0.8s">Réseau National des Maisons des Sciences de l'Homme - <span class="country">France</span></p>
<span class="team-member-description wow animated fadeIn">28/11/2017 </span>
</div>
</div>
<!-- signature fin -->
<!-- signature -->
<div class="col-md-3 col-sm-4 text-center" >
<div class="blocsign">
<div class="logo" data-wow-delay="0.1s">
<div class= "col-md-8 col-md-offset-2" >
<img class="img-responsive center-block" src="img/logo100/upsud_logo.png" alt="UPSUD">
</div>
</div>
<h4 class= "wow animated fadeInUp" data-wow-delay= "0.7s">UPSUD</h4>
<p class= "member-title wow animated fadeIn" data-wow-delay= "0.8s">Université Paris-Sud - <span class="country">France</span></p>
<span class="team-member-description wow animated fadeIn">04/12/2017 </span>
</div>
</div>
<!-- signature fin -->
<!-- signature -->
<div class="col-md-3 col-sm-4 text-center" >
<div class="blocsign">
<div class="logo" data-wow-delay="0.1s">
<div class= "col-md-8 col-md-offset-2" >
<img class="img-responsive center-block" src="img/logo100/univ_laval_logo.png" alt="Université Laval">
</div>
</div>
<h4 class= "wow animated fadeInUp" data-wow-delay= "0.7s">Université Laval</h4>
<p class= "member-title wow animated fadeIn" data-wow-delay= "0.8s"><span class="country">Canada</span></p>
<span class="team-member-description wow animated fadeIn">05/12/2017 </span>
</div>
</div>
<!-- signature fin -->
<!-- signature -->
<div class="col-md-3 col-sm-4 text-center" >
<div class="blocsign">
<div class="logo" data-wow-delay="0.1s">
<div class= "col-md-8 col-md-offset-2" >
<img class="img-responsive center-block" src="img/logo100/UdS_logo.png" alt="UdS">
</div>
</div>
<h4 class= "wow animated fadeInUp" data-wow-delay= "0.7s">UdS</h4>
<p class= "member-title wow animated fadeIn" data-wow-delay= "0.8s">Universität des Saarlandes - <span class="country">Germany</span></p>
<span class="team-member-description wow animated fadeIn">06/12/2017 </span>
</div>
</div>
<!-- signature fin -->
<!-- signature -->
<div class="col-md-3 col-sm-4 text-center" >
<div class="blocsign">
<div class="logo" data-wow-delay="0.1s">
<div class= "col-md-8 col-md-offset-2" >
<img class="img-responsive center-block" src="img/logo100/ur1.png" alt="Université Rennes 1">
</div>
</div>
<h4 class= "wow animated fadeInUp" data-wow-delay= "0.7s">Université de Rennes 1</h4>
<p class= "member-title wow animated fadeIn" data-wow-delay= "0.8s"><span class="country">France</span></p>
<span class="team-member-description wow animated fadeIn">14/12/2017 </span>
</div>
</div>
<!-- signature fin -->
<!-- signature -->
<div class="col-md-3 col-sm-4 text-center" >
<div class="blocsign">
<div class="logo" data-wow-delay="0.1s">
<div class= "col-md-8 col-md-offset-2" >
<img class="img-responsive center-block" src="img/logo100/CentraleSupelec.png" alt="Université Rennes 1">
</div>
</div>
<h4 class= "wow animated fadeInUp" data-wow-delay= "0.7s">CentraleSupélec</h4>
<p class= "member-title wow animated fadeIn" data-wow-delay= "0.8s"><span class="country">France</span></p>
<span class="team-member-description wow animated fadeIn">18/12/2017 </span>
</div>
</div>
<!-- signature fin -->
<!-- signature -->
<div class="col-md-3 col-sm-4 text-center" >
<div class="blocsign">
<div class="logo" data-wow-delay="0.1s">
<div class= "col-md-8 col-md-offset-2" >
<img class="img-responsive center-block" src="img/logo100/science_po_grenoble.png" alt="Science Po Grenoble">
</div>
</div>
<h4 class= "wow animated fadeInUp" data-wow-delay= "0.7s">Science Po Grenoble</h4>
<p class= "member-title wow animated fadeIn" data-wow-delay= "0.8s">Institut d'Etudes Politiques de Grenoble - <span class="country">France</span></p>
<span class="team-member-description wow animated fadeIn">20/12/2017 </span>
</div>
</div>
<!-- signature fin -->
<!-- signature -->
<div class="col-md-3 col-sm-4 text-center" >
<div class="blocsign">
<div class="logo" data-wow-delay="0.1s">
<div class= "col-md-8 col-md-offset-2" >
<img class="img-responsive center-block" src="img/logo100/universite_clermont_auvergne.png" alt="Université Clermont-Auvergne">
</div>
</div>
<h4 class= "wow animated fadeInUp" data-wow-delay= "0.7s">Université Clermont-Auvergne</h4>
<p class= "member-title wow animated fadeIn" data-wow-delay= "0.8s"><span class="country">France</span></p>
<span class="team-member-description wow animated fadeIn">20/12/2017 </span>
</div>
</div>
<!-- signature fin -->
<!-- signature -->
<div class="col-md-3 col-sm-4 text-center" >
<div class="blocsign">
<div class="logo" data-wow-delay="0.1s">
<div class= "col-md-8 col-md-offset-2" >
<img class="img-responsive center-block" src="img/logo100/universite_strasbourg.png" alt="Université de Strasbourg">
</div>
</div>
<h4 class= "wow animated fadeInUp" data-wow-delay= "0.7s">Uni.Stra</h4>
<p class= "member-title wow animated fadeIn" data-wow-delay= "0.8s">Université de Strasbourg - <span class="country">France</span></p>
<span class="team-member-description wow animated fadeIn">20/12/2017 </span>
</div>
</div>
<!-- signature fin -->
<!-- signature -->
<div class="col-md-3 col-sm-4 text-center" >
<div class="blocsign">
<div class="logo" data-wow-delay="0.1s">
<div class= "col-md-8 col-md-offset-2" >
<img class="img-responsive center-block" src="img/logo100/telecom.png" alt="Telecom ParisTech">
</div>
</div>
<h4 class= "wow animated fadeInUp" data-wow-delay= "0.7s">Telecom ParisTech</h4>
<p class= "member-title wow animated fadeIn" data-wow-delay= "0.8s">Télécom ParisTech - <span class="country">France</span></p>
<span class="team-member-description wow animated fadeIn">20/12/2017 </span>
</div>
</div>
<!-- signature fin -->
<!-- signature -->