-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1060 lines (893 loc) · 52.1 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>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Tell the browser to be responsive to screen width -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Marcellan Fest</title>
<meta name="description" content="International Conference on Orthogonal Polynomials">
<meta name="author" content="UCA Datalab">
<meta name="google-site-verification" content="JivGM--lbrk-04oWzv4_qJeAXjSsyHS8WHpgCMDbolw" />
<meta name="og:title" property="og:title" content="International Conference on Orthogonal Polynomials">
<!-- Base CSS -->
<link href="css/base.css" rel="stylesheet">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css">
<!-- Google Fonts -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap">
<!-- Bootstrap core CSS -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.0/css/bootstrap.min.css" rel="stylesheet">
<!-- Material Design Bootstrap -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/mdbootstrap/4.19.1/css/mdb.min.css" rel="stylesheet">
<link href="css/landing.css" rel="stylesheet">
<!-- JQuery -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!-- Bootstrap tooltips -->
<script type="text/javascript"
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.4/umd/popper.min.js"></script>
<!-- Bootstrap core JavaScript -->
<script type="text/javascript"
src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.0/js/bootstrap.min.js"></script>
<!-- MDB core JavaScript -->
<script type="text/javascript"
src="https://cdnjs.cloudflare.com/ajax/libs/mdbootstrap/4.19.1/js/mdb.min.js"></script>
<script src="https://smtpjs.com/v3/smtp.js"></script>
<script type="text/javascript" src="js/form_manager.js"></script>
<title>International Conference on Orthogonal Polynomials</title>
</head>
<!--Main Navigation-->
<header>
<!--Navbar-->
<nav class="navbar navbar-expand-lg navbar-dark fixed-top scrolling-navbar">
<div class="container">
<!-- Navbar brand -->
<a class="navbar-brand" href="#">
<div style="font-size: 30px;">
</div>
</a>
<!-- Collapse button -->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#basicExampleNav"
aria-controls="basicExampleNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Collapsible content -->
<div class="collapse navbar-collapse" id="basicExampleNav">
<!-- Links -->
<ul class="navbar-nav mr-auto smooth-scroll">
<li class="nav-item ">
<a class="nav-link" href="#intro">Home
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#introduction">Conference</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#speakers">Participants</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#importantDates">Dates</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#venue">Venue</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#program">Program</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#grants">Grants</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#registration">Registration</a>
</li>
<!--
<li class="nav-item">
<a class="nav-link" href="#call">Calls</a>
</li>
-->
<li class="nav-item">
<a class="nav-link text-center" href="#paco">Paco Marcellán</a>
</li>
</ul>
</div>
<!-- Collapsible content -->
</div>
</nav>
<!--/.Navbar-->
<!--Mask-->
<div id="intro" class="view">
<div class="mask rgba-black-strong overflow-auto" style="background-color: rgba(0,0,0,0.4);">
<div class="container-fluid d-flex align-items-center justify-content-center h-100 overflow-auto">
<div class="row d-flex justify-content-center text-center">
<div class="col-md-10">
<!-- Heading -->
<h2 class="display-4 font-weight-bold white-text pt-5 mb-2">International Conference on
Orthogonal Polynomials</h2>
<h3 class="text-white">Celebrating Francisco Marcellán's 70th birthday</h3>
<!-- Divider -->
<hr class="hr-light">
<!-- Description -->
<h4 class="white-text my-4">Cádiz (Spain), April 21st-23rd 2022</h4>
<h3> <a class="nav-link text-white" href="#program"><strong>* Scientific program is now
available *</strong></a></h3>
<div class="row justify-content-center">
<div class="col-md-4 justify-content-center" style="margin-bottom: 0rem !important;">
<a href="http://datalab.uca.es/"><img class="img-responsive mt-4" style="margin:0 auto;"
src="images/partners_logos/datalab_white.png" alt="UCA Datalab" width="250px">
</a>
</div>
<div class="col-md-4 justify-content-center " style="margin-bottom: 0rem !important;">
<a href="https://www.uc3m.es/"><img class="img-responsive"
src="images/partners_logos/uc3m.png" alt="UCM3-logo"
style="max-width:250px; margin:0 auto;">
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--/.Mask-->
</header>
<!--Main Navigation-->
<!--Main layout-->
<main>
<div class="container">
<section id="introduction" class="text-center">
<h2 class="mb-5 font-weight-bold text-center section-title">Conference</h2>
<!--Grid row-->
<div class="row d-flex justify-content-center mb-4">
<!--Grid column-->
<div class="col-md-4 text-left">
<!-- Description -->
<p class="darkgrey-text">
This international conference will be focused in the theory of orthogonal polynomials, and more
specifically around the topics in which Francisco Marcellán has largely contributed, which
include, among others:
</p>
<ul class="darkgrey-text">
<li>Orthogonal polynomials in all their flavours</li>
<li>Approximation theory</li>
<li>Painlevé equations</li>
<li>Spectral theory of differential operators</li>
<li>Integrable systems</li>
</ul>
<p class="darkgrey-text">
The venue for the conference is the charming city of Cádiz, in the southwest Atlantic coast of
Spain. Cádiz is one of the oldest cities in Europe, originally founded by the phoenicians, with
more than 3000 years of history. With beautiful sunsets over the Caleta beach, amazing
monuments, great food and charming people, Cádiz is the perfect place to enjoy a few days of
mathematical interaction among colleagues.
</p>
</div>
<div class="col-md-4">
<img src="images/cadiz.jpg" alt="Venue of the Marcellan Fest conference" id="conference-pic"
width="90">
</div>
</div>
</section>
<hr class="my-5">
<section id="speakers">
<h2 class=" font-weight-bold text-center section-title">Participants</h2>
<!--Grid row-->
<div class="row d-flex justify-content-center mb-4">
<!--Grid column-->
<div class="col-md-8 text-center">
<h5 class=" font-weight-bold mb-4" style="color: #b71a3b;">Organizing Committee:</h5>
<div class="row justify-content-md-center">
<div class="col-2"></div>
<div class="col-4">
<p class="darkgrey-text"></p><strong>David Gómez-Ullate</strong> <br> (Universidad de Cádiz)
</p>
<p class="darkgrey-text"></p><strong>Manuel Mañas</strong> <br> (Universidad Complutense de
Madrid)</p>
</div>
<div class="col-4">
<p class="darkgrey-text"></p><strong>Andrei Martínez-Finkelshtein</strong> <br>(Baylor
University & Universidad de Almería)</p>
<p class="darkgrey-text"></p><strong>Walter van Assche</strong> <br>(Katholieke Universiteit
Leuven)</p>
</div>
<div class="col-2"></div>
</div>
</div>
</div>
<h5 class=" font-weight-bold text-center mb-4" style="color: #b71a3b;">Invited speakers:</h5>
<div class="container mt-3 max-width-speakers" style="margin-bottom: 3rem !important;">
<div class="row justify-content-center">
<div class="col-md-4">
<div class="bg-white p-3 text-center rounded box">
<div class="team-photo">
<img class="img-responsive rounded-image
person-photo" src="images/sasha_aptekarev.png" alt="Marcellan Fest Participant"
width="90">
</div>
<h5 class="mt-3 name">Alexander Aptekarev</h5>
<span class="darkgrey-text">Keldysh Institute Moscow</span>
</div>
</div>
<div class="col-md-4">
<div class="bg-white p-3 text-center rounded box">
<div class="team-photo">
<img class="img-responsive rounded-image
person-photo" src="images/alfredo_deano.jpg" alt="Marcellan Fest Participant"
width="90">
</div>
<h5 class="mt-3 name">Alfredo Deaño</h5>
<span class="darkgrey-text">Universidad Carlos III de Madrid</span>
</div>
</div>
<div class="col-md-4">
<div class="bg-white p-3 text-center rounded box">
<div class="team-photo">
<img class="img-responsive rounded-image
person-photo" src="images/mariangeles_gferrero.png"
alt="Marcellan Fest Participant" width="90">
</div>
<h5 class="mt-3 name">Mariangeles García Ferrero</h5>
<span class="darkgrey-text">BCAM Bilbao</span>
</div>
</div>
</div>
<p></p>
<div class="row justify-content-center">
<div class="col-md-4">
<div class="bg-white p-3 text-center rounded box">
<div class="team-photo">
<img class="img-responsive rounded-image
person-photo" src="images/ana_loureiro.png" alt="Marcellan Fest Participant"
width="90">
</div>
<h5 class="mt-3 name">Ana Loureiro</h5>
<span class="darkgrey-text"> University of Kent </span>
</div>
</div>
<div class="col-md-4">
<div class="bg-white p-3 text-center rounded box">
<div class="team-photo">
<img class="img-responsive rounded-image
person-photo" src="images/walter_vanassche.jpeg" alt="Marcellan Fest Participant"
width="90">
</div>
<h5 class="mt-3 name">Walter van Assche</h5>
<span class="darkgrey-text">KU Leuven</span>
</div>
</div>
<div class="col-md-4">
<div class="bg-white p-3 text-center rounded box">
<div class="team-photo">
<img class="img-responsive rounded-image
person-photo" src="images/yuan_xu.jpeg" alt="Marcellan Fest Participant"
width="90">
</div>
<h5 class="mt-3 name">Yuan Xu</h5>
<span class="darkgrey-text">University of Oregon</span>
</div>
</div>
</div>
<p></p>
</div>
<h5 class=" font-weight-bold text-center mb-4" style="color: #b71a3b;">All participants:</h5>
<div class="container mt-3 max-width-speakers" style="margin-bottom: 3rem !important;">
<div class="panel-body justify-content-center">
<ul class="list-group">
<li class="list-group-item">
<div class="row">
<div class="col-md-5"><strong>Amor Francisco</strong> University of Cádiz</div>
<div class="col-md-5"><strong>Anbhu Swaminathan</strong> Indian Institute of Technology
Roorkee</div>
</div>
</li>
<li class="list-group-item">
<div class="row">
<div class="col-md-5"><strong>Aptekarev Alexander</strong> Keldysh Institute Moscow
</div>
<div class="col-md-5"><strong>Arvesú Jorge</strong> Universidad Carlos III de Madrid
</div>
</div>
</li>
<li class="list-group-item">
<div class="row">
<div class="col-md-5"><strong>Branquinho Amílcar</strong> Universidade de Coimbra</div>
<div class="col-md-5"><strong>Castro Smirnova Mirta María</strong> Universidad de
Sevilla</div>
</div>
</li>
<li class="list-group-item">
<div class="row">
<div class="col-md-5"><strong>Christiansen Jacob</strong> Lund University</div>
<div class="col-md-5"><strong>Ciaurri Óscar</strong> Universidad de La Rioja</div>
</div>
</li>
<li class="list-group-item">
<div class="row">
<div class="col-md-5"><strong>Curbera Costello Guillermo</strong> Universidad de Sevilla
</div>
<div class="col-md-5"><strong>Deaño Alfredo</strong> Universidad Carlos III de Madrid
</div>
</div>
</li>
<li class="list-group-item">
<div class="row">
<div class="col-md-5"><strong>Durán Antonio J.</strong> Universidad de Sevilla</div>
<div class="col-md-5"><strong>Escribano Carmen</strong> Universidad Politécnica de
Madrid </div>
</div>
</li>
<li class="list-group-item">
<div class="row">
<div class="col-md-5"><strong>Espínola García Rafael</strong> Universidad de Sevilla
</div>
<div class="col-md-5"><strong>Fernández Díaz Juan Enrique</strong> Universidade de
Aveiro</div>
</div>
</li>
<li class="list-group-item">
<div class="row">
<div class="col-md-5"><strong>Fernández Rodríguez Lidia</strong> Universidad de Granada
</div>
<div class="col-md-5"><strong>Ferreira Chelo</strong> Universidad de Zaragoza</div>
</div>
</li>
<li class="list-group-item">
<div class="row">
<div class="col-md-5"><strong>Foulquié Moreno Ana</strong> Universidade de Aveiro</div>
<div class="col-md-5"><strong>García-Ferrero María Ángeles</strong> BCAM</div>
</div>
</li>
<li class="list-group-item">
<div class="row">
<div class="col-md-5"><strong>Gómez-Ullate Oteiza David</strong> Universidad de Cádiz
</div>
<div class="col-md-5"><strong>Goyal Praduman</strong> Indian Institute of Technology,
Roorkee</div>
</div>
</li>
<li class="list-group-item">
<div class="row">
<div class="col-md-5"><strong>Jiménez de la Jara Javier</strong> Universidad de Cádiz
</div>
<div class="col-md-5"><strong>Kuijlaars Arno Katholieke</strong> Universiteit Leuven
</div>
</div>
</li>
<li class="list-group-item">
<div class="row">
<div class="col-md-5"><strong>Lara Velasco David </strong> Universidad de Granada</div>
<div class="col-md-5"><strong>Lima Helder </strong> University of Kent</div>
</div>
</li>
<li class="list-group-item">
<div class="row">
<div class="col-md-5"><strong>Lopez Lagomasino Guillermo</strong> Universidad Carlos III
de Madrid</div>
<div class="col-md-5"><strong>Loureiro Ana</strong> University of Kent</div>
</div>
</li>
<li class="list-group-item">
<div class="row">
<div class="col-md-5"><strong>Mañas Baena Manuel</strong> Universidad Complutense</div>
<div class="col-md-5"><strong>Mañas Mañas Juan F.</strong> Universidad de Almería</div>
</div>
</li>
<li class="list-group-item">
<div class="row">
<div class="col-md-5"><strong>Marcellán Francisco </strong>Universidad Carlos III de
Madrid</div>
<div class="col-md-5"><strong>Márquez Almudena del Pilar</strong> University of Cadiz
</div>
</div>
</li>
<li class="list-group-item">
<div class="row">
<div class="col-md-5"><strong>Marriaga Castillo Misael Enrique </strong>Universidad Rey
Juan Carlos</div>
<div class="col-md-5"><strong>Martinez Finkelshtein Andrei </strong> Baylor University
and Universidad de Almeria</div>
</div>
</li>
<li class="list-group-item">
<div class="row">
<div class="col-md-5"><strong>Milson Robert </strong>Dalhousie University</div>
<div class="col-md-5"><strong>Minguez Ceniceros Judit </strong>Universidad de La Rioja
</div>
</div>
</li>
<li class="list-group-item">
<div class="row">
<div class="col-md-5"><strong>Moreno Balcázar Juan José </strong>Universidad de Almería
</div>
<div class="col-md-5"><strong>Palacios Herrero Pablo </strong>Universidad Pública de
Navarra</div>
</div>
</li>
<li class="list-group-item">
<div class="row">
<div class="col-md-5"><strong>Parra Iván</strong> KU Leuven</div>
<div class="col-md-5"><strong>Pedersen Henrik Laurberg </strong> University of
Copenhagen</div>
</div>
</li>
<li class="list-group-item">
<div class="row">
<div class="col-md-5"><strong>Pérez Sinusía Ester</strong> Universidad de Zaragoza</div>
<div class="col-md-5"><strong>Piñar González Miguel A.</strong> Universidad de Granada
</div>
</div>
</li>
<li class="list-group-item">
<div class="row">
<div class="col-md-5"><strong>Precioso Garcelán Daniel</strong> Universidad de Cádiz
</div>
<div class="col-md-5"><strong>Rebocho Maria das Neves</strong> Universidad de da Beira
Interior</div>
</div>
</li>
<li class="list-group-item">
<div class="row">
<div class="col-md-5"><strong>Sanchez-Dehesa Jesus</strong> Universidad de Granada</div>
<div class="col-md-5"><strong>Swiderski Grzegorz</strong> KU Leuven</div>
</div>
</li>
<li class="list-group-item">
<div class="row">
<div class="col-md-5"><strong>van Assche Walter</strong> KU Leuven</div>
<div class="col-md-5"><strong>Varona Juan Luis</strong> Universidad de La Rioja</div>
</div>
</li>
<li class="list-group-item">
<div class="row">
<div class="col-md-5"><strong>Xu Yuan</strong> University of Oregon</div>
<div class="col-md-5"><strong>Zarzo Alejandro</strong> Universidad Politécnica de Madrid
</div>
</div>
</li>
<li class="list-group-item">
<div class="row">
<div class="col-md-5"><strong>Zurrian Ignacio </strong>Universidad de Sevilla</div>
</div>
</li>
</ul>
</div>
</div>
</section>
<hr class="my-5">
<section id="importantDates" class="text-center">
<h2 class="mb-5 font-weight-bold text-center section-title">Important Dates</h2>
<div class="row justify-content-center mb-4">
<iframe
src="https://calendar.google.com/calendar/embed?height=600&wkst=1&bgcolor=%23B39DDB&ctz=Europe%2FMadrid&hl=en_GB&title=Conference%20Calendar&src=c21hcnRzaGlwcGluZy5jb250YWN0QGdtYWlsLmNvbQ&color=%23039BE5"
style="border-width:0" width="800" height="600" frameborder="0" scrolling="no"></iframe>
</div>
<!--Grid row-->
<p>1st Announcement: <br> <strong>Jan 7th, 2022</strong> </p>
<div class="row d-flex justify-content-center mb-4">
<!--Grid column-->
<div class="col-md-3 ">
<!-- Description -->
<p>Registration opens:<br> <strong> Feb 1st, 2022</strong></p>
<p>Deadline for submission of contributed talks:<br> <strong> Mar 15th, 2022</strong></p>
</div>
<div class="col-md-3 ">
<!-- Description -->
<p>Communication of accepted talks: <br><strong>Mar 20th, 2022</strong></p>
<p>Registration closes: <br><strong> Apr 1st, 2022</strong></p>
</div>
</div>
</section>
<hr class="my-5">
<section id="venue" class="text-center">
<h2 class="mb-5 font-weight-bold text-center section-title">Conference Venue</h2>
<!--Grid row-->
<div class="row d-flex justify-content-center mb-4">
<div class="col-md-7 justify-content-center mb-6">
<!-- Description -->
<p class="darkgrey-text">
The conference is hosted in the old city of Cádiz (“Cai Cai” in local parlance).
More specifically, the sessions will take place in the building “Constitución 1812” from the
University of Cádiz.
You might want to take this into account when booking your accommodation. There are many hotels
in the old city, most of them within walking distance from the conference venue.
Further details will be given in due course.
</p>
<br>
<div class="row justify-content-center mb-4">
<div class="mapouter">
<div class="gmap_canvas">
<iframe width="95%" height="95%" id="gmap_canvas"
src="https://maps.google.com/maps?q=Edificio%20Constituci%C3%B3n%201812&t=&z=13&ie=UTF8&iwloc=&output=embed"
frameborder="0" scrolling="no" marginheight="0" marginwidth="0">
</iframe>
<a href="https://www.online-timer.net"></a>
<br>
<style>
.mapouter {
position: relative;
text-align: center;
height: 500px;
width: 904px;
}
</style>
<style>
.gmap_canvas {
overflow: hidden;
background: none !important;
height: 500px;
width: 904px;
}
</style>
</div>
</div>
</div>
</div>
</div>
</section>
<hr class="my-5">
<section id="program" class="text-center">
<h2 class="mb-5 font-weight-bold text-center section-title">Program Schedule</h2>
<div class="row d-flex justify-content-center mb-4">
<!--Grid column-->
<div class="col-md-7 text-center">
<table class="table table-bordered">
<thead>
<tr>
<th scope="col"></th>
<th scope="col">Thursday Apr 21</th>
<th scope="col">Friday Apr 22</th>
<th scope="col">Saturday Apr 23</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">9.00</th>
<td height=50 class="table-secondary">Registration</td>
<td></td>
<td></td>
</tr>
<tr>
<th scope="row">9.30</th>
<td height=50 class="table-secondary">Opening</td>
<td></td>
<td></td>
</tr>
<tr>
<th scope="row">10.00</th>
<td height=100 style="vertical-align: middle;" class="table-primary"> <strong>Walter van
Assche</strong> <br> KU Leuven </td>
<td height=100 style="vertical-align: middle;" class="table-primary"><strong>Alfredo Deaño</strong> <br> Universidad Carlos III de Madrid</td>
<td height=100 style="vertical-align: middle;" class="table-primary">
<strong>Mariangeles García Ferrero</strong> <br> BCAM Bilbao
</td>
</tr>
<tr>
<th scope="row">10.50</th>
<td height=50 class="table-info"><strong>Miguel A. Piñar</strong> <br> Universidad de
Granada</td>
<td height=50 class="table-info"> <strong>Arno Kuijlaars</strong> <br> Katholieke
Universiteit Leuven </td>
<td height=50 class="table-info"><strong>Robert Milson</strong> <br> Dalhousie
University </td>
</tr>
<tr>
<th scope="row">11.15</th>
<td height=30 class="table-danger" colspan="1">Coffe Break</td>
<td height=30 class="table-warning" colspan="1">Poster Session</td>
<td height=30 class="table-danger" colspan="1">Coffe Break</td>
</tr>
<tr>
<th scope="row">11.45</th>
<td height=50 class="table-info"> <strong>Henrik Laurberg Pedersen</strong> <br>
University of Copenhagen</td>
<td height=50 class="table-info"><strong>Ignacio Zurrián</strong> <br>Universidad de
Sevilla </td>
<td height=50 class="table-info"> <strong>Antonio J. Durán</strong> <br> Universidad de
Sevilla </td>
</tr>
<tr>
<th scope="row">12.10</th>
<td height=50 class="table-info"> <strong> Misael Marriaga</strong> <br>Universidad Rey
Juan Carlos</td>
<td height=50 class="table-info"><strong>Grzegorz Swiderski</strong><br> KU Leuven</td>
<td height=50 class="table-primary align-middle" rowspan="2"><strong>Yuan
Xu</strong><br> University of Oregon</td>
</tr>
<tr>
<th scope="row">12.35</th>
<td height=50 class="table-info"><strong>Helder Lima</strong> <br> University of Kent
</td>
<td height=50 class="table-info"><strong>Ana Foulquié</strong> <br>Universidade de
Aveiro </td>
</tr>
<tr>
<th scope="row">13.00</th>
<td height=120 style="vertical-align: middle;" class="table-danger" colspan="2">Lunch
</td>
</tr>
<tr>
<th scope="row">15.00</th>
<td height=100 style="vertical-align: middle;" class="table-primary"> <strong>Ana Loureiro</strong> <br> University of Kent </td>
<td height=100 style="vertical-align: middle;" class="table-primary"> <strong>Alexander
Aptekarev</strong> <br> Keldysh Institute Moscow</td>
</tr>
<tr>
<th scope="row">15.50</th>
<td height=50 class="table-info"> <strong>Amílcar Branquinho</strong> <br>Universidade
de Coimbra </td>
<td height=50 class="table-info"> <strong>Jorge Arvesú</strong><br> Universidad Carlos
III de Madrid </td>
</tr>
<tr>
<th scope="row">16.15</th>
<td height=50 class="table-danger" colspan="2">Coffe Break</td>
</tr>
<tr>
<th scope="row">16.45</th>
<td height=50 class="table-info"> <strong>Ester Pérez Sinusía</strong> <br>Universidad
de Zaragoza </td>
<td height=50 class="table-info"><strong>Maria das Neves Rebocho</strong>
<br>Universidade da Beira Interior
</td>
</tr>
<tr>
<th scope="row">17.10</th>
<td height=50 class="table-info"><strong>Pablo Palacios Herrero</strong> <br>
Universidad Pública de Navarra </td>
<td height=50 class="table-info"><strong>Swaminathan Anbhu</strong> <br>Indian Institute
of Technology Roorkee</td>
</tr>
<tr>
<th scope="row">17.35</th>
<td height=50 class="table-secondary">Free time</td>
<td height=50 style="vertical-align: middle;" class="table-secondary" rowspan="2">Free
time</td>
</tr>
<tr>
<th scope="row">20.30</th>
<td height=50 class="table-success"> <strong>Conference Dinner</strong></td>
</tr>
</tbody>
</table>
<p>
You can find further information about the talks in the <a href="./Book-of-Abstracts.pdf"
download>Book of Abstracts</a>
<span style="font-size: 1rem; color:#7e0f12">
<i class="fa fa-file-pdf"></i>
</span>
</p>
</div>
</div>
</section>
<hr class="my-5">
<section id="grants" class="text-center">
<h2 class="mb-5 font-weight-bold text-center section-title">Grants</h2>
<div class="row d-flex justify-content-center mb-4">
<!--Grid column-->
<div class="col-md-5 text-center">
<!-- Description -->
<p class="darkgrey-text">
We offer 8 grants to cover the accommodation of PhD students and young postdocs in a single room
at Colegio Mayor Universidad de Cádiz, which is just next to the conference venue.
In order to apply for these grants, please send an email <strong>before March 20th </strong> to
<a href="mailto:marcellanfest@gmail.com">marcellanfest@gmail.com </a>
and include as an attachment a letter from your supervisor.
These grants do not imply waiving of the registration fee.
</p>
</div>
</div>
<!--Grid row-->
<div class="row d-flex justify-content-center mb-4">
<div class="col-md-4 mb-4">
<img src="images/colegio_mayor_uca.jpeg" alt="Venue of the Marcellan Fest conference"
id="conference-pic" width="100">
</div>
</div>
</section>
<hr class="my-5">
<section id="registration">
<h2 class="mb-5 font-weight-bold text-center section-title">Registration</h2>
<div class="row d-flex justify-content-center mb-4">
<div class="col-md-7 text">
<p class="text-center">
Please fill in the form below if you are interested in participating in the conference, letting
us know if you would like to present a talk or poster. There is only a limited number of slots
for talks, but this information will help us know in advance an estimated number of
participants.
The deadline for submission of abstracts is March 1st, and acceptance of proposed contributions
will be communicated on March 15th.
</p>
<form method="post" id="registration-form">
<div class="form-group">
<label for="name-label">Name (*)</label>
<input type="text" class="form-control" name="name" placeholder="Your name" required>
</div>
<div class="form-group">
<label for="surname-label">Surname (*)</label>
<input type="text" class="form-control" name="surname" placeholder="Your surname" required>
</div>
<div class="form-group">
<label for="email-label">E-mail (*)</label>
<input type="email" class="form-control" name="email" placeholder="name@example.com"
required>
</div>
<div class="form-group">
<label for="institution-label">Institution (*)</label>
<input type="text" class="form-control" name="institution" placeholder="Your institution"
required>
</div>
<br>
<div class="form-group">
<label for="present-label">Do you want to present a contribution?</label>
<select id="present" name="presents" size="1" class="form-control">
<option value="no" selected>No</option>
<option value="talk">A talk</option>
<option value="poster">A poster</option>
</select>
</div>
<div class="form-group">
<label for="title-label">Title of contribution:</label>
<textarea name="title" rows="1" cols="30" class="form-control"
placeholder="Write only if you have a contribution"></textarea>
</div>
<div class="form-group">
<label for="abstract-label">Abstract of contribution:</label>
<textarea name="abstract" rows="10" cols="30" class="form-control"
placeholder="Write only if you have a contribution"></textarea>
</div>
<p>
Please bear in mind that registration is not complete until the registration fee has been
paid.
For all details involving payment and invoicing, please contact the technical secretariat at
<a href="http://sevilla-en.congresoseci.com/orthogonalpolynomials/index"> registration
portal </a>.
</p>
<p>The registration fees (incl. tax) for the conference are:<br>
Regular fee: 200 EUR <br>
Student fee: 100 EUR <br>
An extra 50 EUR will be charged on late registrations after Apr 1st. <br>
</p>
<input type="submit" value="Register">
</form>
</div>
</div>
</section>
<!--call for abstracts
<hr class="my-5">
<section id="call" class="text-center">
<h2 class="mb-5 font-weight-bold text-center section-title">Call for abstracts</h2>
<div class="row d-flex justify-content-center mb-4">
<div class="col-md-8 text-center">
<p class="darkgrey-text">
We welcome contributed talks and posters. Submission of abstracts for contributed talks and posters will open on <strong>Jan 15th, 2022</strong> and close on <strong>25th, 2022</strong>.
Final acceptance of contributions will be communicated to participants on<strong> Mar 11th, 2022</strong>.
</p>
</div>
</div>
</section>
-->
<hr class="my-5">
<section id="paco" class="text-center">
<h2 class="mb-5 font-weight-bold text-center section-title">Paco Marcellán</h2>
<img class="round" src="images/marce.png" alt="Paco Marcellan" />
<!--Grid row-->
<div class="row d-flex justify-content-center mt-4 mb-4">
<!--Grid column-->
<div class="col-md-8 text-center">
<!-- Description -->
<p class="darkgrey-text">
Paco was born in 1951 in Zaragoza, Aragón, Spain, and decided to study Mathematics at the
University of Zaragoza, getting his degree in 1973 with an Extraordinary Degree Award as well as
the Spanish National Award for students of Mathematics. Three years later we got his PhD in
Mathematics from the same University. He decided to stay at the University, and has been
professor at the universities of Zaragoza, Santiago de Compostela and Politécnica de Madrid.
Since 1991 till now he has been professor of Applied Mathematics at the Universidad Carlos III
de Madrid. He also has visited, as a mathematical researcher, the universities Paul Sabatier
(Toulouse), Pierre et Marie Curie (Paris), Denis Diderot (Paris), Sciences and Techniques de
Lille, as well as visiting professor at the Georgia Institute of Technology, Atlanta, USA and
Coimbra, Portugal. He has been a Special Visiting Researcher at the Department of Applied
Mathematics of the Universidade Estadual Paulista (UNESP) within the framework of the Ciencia
sem Fronteiras program of the Government of Brazil from 2013 to 2015. </p>
<p class="darkgrey-text">
His research activity is mainly focused on approximation theory, orthogonal polynomials, special
functions and their applications in Mathematical Physics. In these directions he has analyzed
structural properties of orthogonal polynomials in relation to different models of
orthogonality, combining techniques of matrix analysis, operator theory, classical analysis and
harmonic analysis. He also has about three hundred research papers in high impact international
journals and has been the editor of more than 20 conference proceedings and is the author of six
teaching monographs. Paco has been a member of the Organizing/Scientific Committees of more than
100 mathematical meetings.
</p>
<p class="darkgrey-text">
He has been the supervisor of 41 PhD students in this area of Applied Mathematics. He has
belonged to the editorial committees of, among others, the Journal of Approximation Theory and
Electronic Transactions in Numerical Analysis. He is a corresponding academic of the Academies
of Exact, Physical and Natural Sciences of Colombia as well as those of Granada and Zaragoza. He
has been Program Director (1999-2004) and Chair (2008-2013) of the SIAM Activity Group on
Orthogonal Polynomials and Special Functions, He has been First Vice President of the Royal
Spanish Mathematical Society (RSME) in the period 2012-2015, the President of the RSME
(2015-2022) and also President of the Spanish Committee of Mathematics (CEMat) in the period
2016-2019.
</p>
<p class="darkgrey-text">
He has held university management positions as Chair of the Engineering and Mathematics
Departments, respectively, of the Universidad Carlos III de Madrid as well as Vice-Chancellor
for Research at this university (1995-2004).
He has been director of ANECA (2004-2006) and Secretary General of Scientific and Technological
Policy in the Ministry of Education and Science (2006-2008).
</p>
<p class="darkgrey-text">
All this activity in Mathematics and in Science requires a big amount of energy, capacity, and
compromise, and deserves recognition and the tribute that, in this small fest, we humbly offer
to him on the occasion of his retirement.
</p>
<p>
<a href="./Paco60-final.pdf" download>Extended Bio for Paco Marcellan’s 60th birthday </a>
<span style="font-size: 1rem; color:#7e0f12">
<i class="fa fa-file-pdf"></i>
</span>
</p>
</div>
</div>
</section>
</div>
</main>
<!--Footer-->
<footer class="page-footer font-small" style="background-color: #7e0f12;">
<!--Footer Links-->
<div class="container mt-5 mb-4 text-center text-md-left">
<div class="row mt-3 justify-content-center">
<!--First column-->
<div class="col-md-3 justify-content-center " style="margin-top:
1rem; margin-bottom: 0rem !important;">
<p class="text-center ">
<a href="https://www.uc3m.es/"><img class="img-responsive" src="images/partners_logos/uc3m.png"
alt="UCM3-logo" style="max-width:360px">
</p></a>
</div>
<!--/.First column-->