-
Notifications
You must be signed in to change notification settings - Fork 0
/
Publications.html
988 lines (981 loc) · 86.2 KB
/
Publications.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
<!DOCTYPE html>
<html style="font-size: 16px;" lang="en"><head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<meta name="keywords" content="">
<meta name="description" content="">
<title>Publications</title>
<link rel="stylesheet" href="nicepage.css" media="screen">
<link rel="stylesheet" href="Publications.css" media="screen">
<script class="u-script" type="text/javascript" src="jquery.js" defer=""></script>
<script class="u-script" type="text/javascript" src="nicepage.js" defer=""></script>
<meta name="generator" content="Nicepage 5.0.7, nicepage.com">
<link rel="icon" href="images/favicon.png">
<link id="u-theme-google-font" rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i|Open+Sans:300,300i,400,400i,500,500i,600,600i,700,700i,800,800i">
<script type="application/ld+json">{
"@context": "http://schema.org",
"@type": "Organization",
"name": "TSchomann",
"sameAs": [
"https://www.linkedin.com/in/timo-schomann-876a6b154/",
"https://orcid.org/0000-0002-0948-6209",
"https://pubmed.ncbi.nlm.nih.gov/?term=Schomann+Timo%5BAuthor%5D&sort=date&size=200",
"https://scholar.google.com/citations?hl=en&user=LHPw8vYAAAAJ",
"https://www.researchgate.net/profile/Timo-Schomann",
"https://tschomann.nicepage.io/",
"https://schomann.github.io/Research/"
]
}</script>
<meta name="theme-color" content="#478ac9">
<meta property="og:title" content="Publications">
<meta property="og:description" content="">
<meta property="og:type" content="website">
</head>
<body class="u-body u-xl-mode" data-lang="en"><header class="u-clearfix u-grey-5 u-header u-sticky u-header" id="Header"><div class="u-clearfix u-sheet u-sheet-1">
<nav class="u-align-left u-menu u-menu-hamburger u-offcanvas u-menu-1" data-responsive-from="XL" data-position="Menu">
<div class="menu-collapse" style="font-size: 1rem; letter-spacing: 0px; font-weight: 700;">
<a class="u-button-style u-custom-active-border-color u-custom-active-color u-custom-border u-custom-border-color u-custom-borders u-custom-hover-border-color u-custom-hover-color u-custom-left-right-menu-spacing u-custom-text-active-color u-custom-text-color u-custom-text-hover-color u-custom-top-bottom-menu-spacing u-nav-link" href="#" style="font-size: calc(1em + 8px);">
<svg class="u-svg-link" preserveAspectRatio="xMidYMin slice" viewBox="0 0 302 302" style=""><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#svg-8a8f"></use></svg>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="svg-8a8f" x="0px" y="0px" viewBox="0 0 302 302" style="enable-background:new 0 0 302 302;" xml:space="preserve" class="u-svg-content"><g><rect y="36" width="302" height="30"></rect><rect y="236" width="302" height="30"></rect><rect y="136" width="302" height="30"></rect>
</g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>
</a>
</div>
<div class="u-custom-menu u-nav-container">
<ul class="u-nav u-spacing-2 u-unstyled u-nav-1"><li class="u-nav-item"><a class="u-active-grey-5 u-border-active-palette-1-base u-border-hover-palette-1-base u-button-style u-hover-grey-10 u-nav-link u-text-active-black u-text-black u-text-hover-black" href="Activities.html" style="padding: 10px 20px;">Activities</a>
</li><li class="u-nav-item"><a class="u-active-grey-5 u-border-active-palette-1-base u-border-hover-palette-1-base u-button-style u-hover-grey-10 u-nav-link u-text-active-black u-text-black u-text-hover-black" href="Publications.html" style="padding: 10px 20px;">Publications</a>
</li><li class="u-nav-item"><a class="u-active-grey-5 u-border-active-palette-1-base u-border-hover-palette-1-base u-button-style u-hover-grey-10 u-nav-link u-text-active-black u-text-black u-text-hover-black" href="Posters.html" style="padding: 10px 20px;">Posters</a>
</li><li class="u-nav-item"><a class="u-active-grey-5 u-border-active-palette-1-base u-border-hover-palette-1-base u-button-style u-hover-grey-10 u-nav-link u-text-active-black u-text-black u-text-hover-black" href="About.html" style="padding: 10px 20px;">About</a>
</li></ul>
</div>
<div class="u-custom-menu u-nav-container-collapse">
<div class="u-align-center u-black u-container-style u-inner-container-layout u-opacity u-opacity-95 u-sidenav">
<div class="u-inner-container-layout u-sidenav-overflow">
<div class="u-menu-close"></div>
<ul class="u-align-center u-nav u-popupmenu-items u-text-active-palette-1-base u-text-hover-palette-5-base u-text-white u-unstyled u-nav-2"><li class="u-nav-item"><a class="u-button-style u-nav-link" href="Activities.html">Activities</a>
</li><li class="u-nav-item"><a class="u-button-style u-nav-link" href="Publications.html">Publications</a>
</li><li class="u-nav-item"><a class="u-button-style u-nav-link" href="Posters.html">Posters</a>
</li><li class="u-nav-item"><a class="u-button-style u-nav-link" href="About.html">About</a>
</li></ul>
</div>
</div>
<div class="u-black u-menu-overlay u-opacity u-opacity-70"></div>
</div>
</nav>
<div class="u-align-right u-social-icons u-spacing-10 u-social-icons-1">
<a class="u-social-url" target="_blank" data-type="LinkedIn" title="LinkedIn" href="https://www.linkedin.com/in/timo-schomann-876a6b154/"><span class="u-icon u-social-icon u-social-linkedin u-icon-1"><svg class="u-svg-link" preserveAspectRatio="xMidYMin slice" viewBox="0 0 112 112" style=""><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#svg-11c7"></use></svg><svg class="u-svg-content" viewBox="0 0 112 112" x="0" y="0" id="svg-11c7"><circle fill="currentColor" cx="56.1" cy="56.1" r="55"></circle><path fill="#FFFFFF" d="M41.3,83.7H27.9V43.4h13.4V83.7z M34.6,37.9L34.6,37.9c-4.6,0-7.5-3.1-7.5-7c0-4,3-7,7.6-7s7.4,3,7.5,7
C42.2,34.8,39.2,37.9,34.6,37.9z M89.6,83.7H76.2V62.2c0-5.4-1.9-9.1-6.8-9.1c-3.7,0-5.9,2.5-6.9,4.9c-0.4,0.9-0.4,2.1-0.4,3.3v22.5
H48.7c0,0,0.2-36.5,0-40.3h13.4v5.7c1.8-2.7,5-6.7,12.1-6.7c8.8,0,15.4,5.8,15.4,18.1V83.7z"></path></svg></span>
</a>
<a class="u-social-url" target="_blank" data-type="Custom" title="ORCID" href="https://orcid.org/0000-0002-0948-6209"><span class="u-file-icon u-icon u-social-custom u-social-icon u-icon-2"><img src="images/csm_orcid_38bcf8dd22.png" alt=""></span>
</a>
<a class="u-social-url" target="_blank" data-type="Custom" title="PubMed" href="https://pubmed.ncbi.nlm.nih.gov/?term=Schomann+Timo%5BAuthor%5D&sort=date&size=200"><span class="u-file-icon u-icon u-social-custom u-social-icon u-icon-3"><img src="images/PubMed.png" alt=""></span>
</a>
<a class="u-social-url" target="_blank" data-type="Custom" title="Custom" href="https://scholar.google.com/citations?hl=en&user=LHPw8vYAAAAJ"><span class="u-file-icon u-icon u-social-custom u-social-icon u-icon-4"><img src="images/Google_Scholar_logo.png" alt=""></span>
</a>
<a class="u-social-url" target="_blank" data-type="Custom" title="ResearchGate" href="https://www.researchgate.net/profile/Timo-Schomann"><span class="u-file-icon u-icon u-social-custom u-social-icon u-icon-5"><img src="images/9f59698c-e156-4f33-9520-405cb7f4d9c6_researchgate_56f72ad6_490x330.png" alt=""></span>
</a>
<a class="u-social-url" data-type="Custom" title="Nicepage" href="https://tschomann.nicepage.io/"><span class="u-file-icon u-icon u-social-custom u-social-icon u-icon-6"><img src="images/Nicepage.png" alt=""></span>
</a>
<a class="u-social-url" data-type="Custom" title="Github" href="https://schomann.github.io/Research/"><span class="u-file-icon u-icon u-social-custom u-social-icon u-icon-7"><img src="images/2111425.png" alt=""></span>
</a>
</div>
<p class="u-align-left u-text u-text-default u-text-palette-5-dark-1 u-text-1">T. Schomann</p>
</div></header>
<section class="u-align-center u-clearfix u-grey-5 u-section-1" id="sec-5ef0">
<div class="u-clearfix u-sheet u-sheet-1">
<div class="u-clearfix u-layout-wrap u-layout-wrap-1">
<div class="u-gutter-0 u-layout">
<div class="u-layout-row">
<div class="u-container-style u-grey-5 u-layout-cell u-size-60 u-layout-cell-1">
<div class="u-container-layout u-container-layout-1">
<h1 class="u-align-center u-text u-text-default u-text-1">Publications</h1>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="u-clearfix u-section-2" id="Publications">
<div class="u-clearfix u-sheet u-valign-middle u-sheet-1">
<div class="u-carousel u-carousel-duration-2000 u-expanded-width u-gallery u-gallery-slider u-layout-carousel u-lightbox u-no-transition u-show-text-on-hover u-gallery-1" id="carousel-671c" data-interval="3000" data-u-ride="carousel">
<ol class="u-absolute-hcenter u-carousel-indicators u-carousel-indicators-1">
<li data-u-target="#carousel-671c" data-u-slide-to="0" class="u-active u-grey-70 u-shape-rectangle" style="width: 30px; height: 3px;"></li>
<li data-u-target="#carousel-671c" data-u-slide-to="1" class="u-grey-70 u-shape-rectangle" style="width: 30px; height: 3px;"></li>
<li data-u-target="#carousel-671c" data-u-slide-to="2" class="u-grey-70 u-shape-rectangle" style="width: 30px; height: 3px;"></li>
<li data-u-target="#carousel-671c" data-u-slide-to="3" class="u-grey-70 u-shape-rectangle" style="width: 30px; height: 3px;"></li>
<li data-u-target="#carousel-671c" data-u-slide-to="4" class="u-grey-70 u-shape-rectangle" style="width: 30px; height: 3px;"></li>
<li data-u-target="#carousel-671c" data-u-slide-to="5" class="u-grey-70 u-shape-rectangle" style="width: 30px; height: 3px;"></li>
<li data-u-target="#carousel-671c" data-u-slide-to="6" class="u-grey-70 u-shape-rectangle" style="width: 30px; height: 3px;"></li>
<li data-u-target="#carousel-671c" data-u-slide-to="7" class="u-grey-70 u-shape-rectangle" style="width: 30px; height: 3px;"></li>
<li data-u-target="#carousel-671c" data-u-slide-to="8" class="u-grey-70 u-shape-rectangle" style="width: 30px; height: 3px;"></li>
<li data-u-target="#carousel-671c" data-u-slide-to="9" class="u-grey-70 u-shape-rectangle" style="width: 30px; height: 3px;"></li>
<li data-u-target="#carousel-671c" data-u-slide-to="10" class="u-grey-70 u-shape-rectangle" style="width: 30px; height: 3px;"></li>
<li data-u-target="#carousel-671c" data-u-slide-to="11" class="u-grey-70 u-shape-rectangle" style="width: 30px; height: 3px;"></li>
<li data-u-target="#carousel-671c" data-u-slide-to="12" class="u-grey-70 u-shape-rectangle" style="width: 30px; height: 3px;"></li>
<li data-u-target="#carousel-671c" data-u-slide-to="13" class="u-grey-70 u-shape-rectangle" style="width: 30px; height: 3px;"></li>
<li data-u-target="#carousel-671c" data-u-slide-to="14" class="u-grey-70 u-shape-rectangle" style="width: 30px; height: 3px;"></li>
<li data-u-target="#carousel-671c" data-u-slide-to="15" class="u-grey-70 u-shape-rectangle" style="width: 30px; height: 3px;"></li>
<li data-u-target="#carousel-671c" data-u-slide-to="16" class="u-grey-70 u-shape-rectangle" style="width: 30px; height: 3px;"></li>
<li data-u-target="#carousel-671c" data-u-slide-to="17" class="u-grey-70 u-shape-rectangle" style="width: 30px; height: 3px;"></li>
<li data-u-target="#carousel-671c" data-u-slide-to="18" class="u-grey-70 u-shape-rectangle" style="width: 30px; height: 3px;"></li>
<li data-u-target="#carousel-671c" data-u-slide-to="19" class="u-grey-70 u-shape-rectangle" style="width: 30px; height: 3px;"></li>
<li data-u-target="#carousel-671c" data-u-slide-to="20" class="u-grey-70 u-shape-rectangle" style="width: 30px; height: 3px;"></li>
<li data-u-target="#carousel-671c" data-u-slide-to="21" class="u-grey-70 u-shape-rectangle" style="width: 30px; height: 3px;"></li>
<li data-u-target="#carousel-671c" data-u-slide-to="22" class="u-grey-70 u-shape-rectangle" style="width: 30px; height: 3px;"></li>
<li data-u-target="#carousel-671c" data-u-slide-to="23" class="u-grey-70 u-shape-rectangle" style="width: 30px; height: 3px;"></li>
<li data-u-target="#carousel-671c" data-u-slide-to="24" class="u-grey-70 u-shape-rectangle" style="width: 30px; height: 3px;"></li>
<li data-u-target="#carousel-671c" data-u-slide-to="25" class="u-grey-70 u-shape-rectangle" style="width: 30px; height: 3px;"></li>
<li data-u-target="#carousel-671c" data-u-slide-to="26" class="u-grey-70 u-shape-rectangle" style="width: 30px; height: 3px;"></li>
</ol>
<div class="u-carousel-inner u-gallery-inner u-gallery-inner-1" role="listbox">
<div class="u-active u-carousel-item u-effect-fade u-gallery-item u-carousel-item-1" data-image-width="1600" data-image-height="1600" data-href="Publications.html#Publication-Table">
<div class="u-back-slide" data-image-width="1600" data-image-height="1600">
<img class="u-back-image u-expanded u-image-contain" src="images/2013A-960958-1.jpg" alt="More information below!">
</div>
<div class="u-align-center u-over-slide u-shading u-valign-bottom u-over-slide-1">
<h3 class="u-gallery-heading" style="font-weight: 700; line-height: 1.6; letter-spacing: 2px;">More information below!</h3>
<p class="u-gallery-text"></p>
</div>
</div>
<div class="u-carousel-item u-effect-fade u-gallery-item u-carousel-item-2" data-image-width="1600" data-image-height="1600" data-href="Publications.html#Publication-Table">
<div class="u-back-slide" data-image-width="1600" data-image-height="1600">
<img class="u-back-image u-expanded u-image-contain" src="images/2013B-1-s2.0-S0167488913002747-main-11.jpg" alt="More information below!">
</div>
<div class="u-align-center u-over-slide u-shading u-valign-bottom u-over-slide-2">
<h3 class="u-gallery-heading" style="font-weight: 700; line-height: 1.6; letter-spacing: 2px;">More information below!</h3>
<p class="u-gallery-text"></p>
</div>
</div>
<div class="u-carousel-item u-effect-fade u-gallery-item u-carousel-item-3" data-image-width="1600" data-image-height="1600" data-href="Publications.html#Publication-Table">
<div class="u-back-slide" data-image-width="1600" data-image-height="1600">
<img class="u-back-image u-expanded u-image-contain" src="images/2016A-Article_IsolationExpansionAndNeuralDif-1.jpg" alt="More information below!">
</div>
<div class="u-align-center u-over-slide u-shading u-valign-bottom u-over-slide-3">
<h3 class="u-gallery-heading" style="font-weight: 700; line-height: 1.6; letter-spacing: 2px;">More information below!</h3>
<p class="u-gallery-text"></p>
</div>
</div>
<div class="u-carousel-item u-effect-fade u-gallery-item u-carousel-item-4" data-image-width="1600" data-image-height="1600" data-href="Publications.html#Publication-Table">
<div class="u-back-slide" data-image-width="1600" data-image-height="1600">
<img class="u-back-image u-expanded u-image-contain" src="images/2016B-schomann2016-1.jpg" alt="More information below!">
</div>
<div class="u-align-center u-over-slide u-shading u-valign-bottom u-over-slide-4">
<h3 class="u-gallery-heading" style="font-weight: 700; line-height: 1.6; letter-spacing: 2px;">More information below!</h3>
<p class="u-gallery-text"></p>
</div>
</div>
<div class="u-carousel-item u-effect-fade u-gallery-item u-carousel-item-5" data-image-width="1600" data-image-height="1600" data-href="Publications.html#Publication-Table">
<div class="u-back-slide" data-image-width="1600" data-image-height="1600">
<img class="u-back-image u-expanded u-image-contain" src="images/2017A-file-1.jpg" alt="More information below!">
</div>
<div class="u-align-center u-over-slide u-shading u-valign-bottom u-over-slide-5">
<h3 class="u-gallery-heading" style="font-weight: 700; line-height: 1.6; letter-spacing: 2px;">More information below!</h3>
<p class="u-gallery-text"></p>
</div>
</div>
<div class="u-carousel-item u-effect-fade u-gallery-item u-carousel-item-6" data-image-width="1600" data-image-height="1600" data-href="Publications.html#Publication-Table">
<div class="u-back-slide" data-image-width="1600" data-image-height="1600">
<img class="u-back-image u-expanded u-image-contain" src="images/2018A-1568414-1.png" alt="More information below!">
</div>
<div class="u-align-center u-over-slide u-shading u-valign-bottom u-over-slide-6">
<h3 class="u-gallery-heading" style="font-weight: 700; line-height: 1.6; letter-spacing: 2px;">More information below!</h3>
<p class="u-gallery-text"></p>
</div>
</div>
<div class="u-carousel-item u-effect-fade u-gallery-item u-carousel-item-7" data-image-width="2184" data-image-height="2184" data-href="Publications.html#Publication-Table">
<div class="u-back-slide" data-image-width="1600" data-image-height="1456">
<img class="u-back-image u-expanded u-image-contain" src="images/2019A-schomann2019-1b.jpg" alt="More information below!">
</div>
<div class="u-align-center u-over-slide u-shading u-valign-bottom u-over-slide-7">
<h3 class="u-gallery-heading" style="font-weight: 700; line-height: 1.6; letter-spacing: 2px;">More information below!</h3>
<p class="u-gallery-text"></p>
</div>
</div>
<div class="u-carousel-item u-effect-fade u-gallery-item u-carousel-item-8" data-image-width="1600" data-image-height="1600" data-href="Publications.html#Publication-Table">
<div class="u-back-slide" data-image-width="1600" data-image-height="1600">
<img class="u-back-image u-expanded u-image-contain" src="images/2019B-s11671-019-2986-y-1.jpg" alt="More information below!">
</div>
<div class="u-align-center u-over-slide u-shading u-valign-bottom u-over-slide-8">
<h3 class="u-gallery-heading" style="font-weight: 700; line-height: 1.6; letter-spacing: 2px;">More information below!</h3>
<p class="u-gallery-text"></p>
</div>
</div>
<div class="u-carousel-item u-effect-fade u-gallery-item u-carousel-item-9" data-image-width="2248" data-image-height="2248" data-href="Publications.html#Publication-Table">
<div class="u-back-slide" data-image-width="1600" data-image-height="1600">
<img class="u-back-image u-expanded u-image-contain" src="images/2020C-Schomann2020_Article_MultimodalImagingOfHairFollicl-1.jpg" alt="More information below!">
</div>
<div class="u-align-center u-over-slide u-shading u-valign-bottom u-over-slide-9">
<h3 class="u-gallery-heading" style="font-weight: 700; line-height: 1.6; letter-spacing: 2px;">More information below!</h3>
<p class="u-gallery-text"></p>
</div>
</div>
<div class="u-carousel-item u-effect-fade u-gallery-item u-carousel-item-10" data-image-width="2291" data-image-height="2291" data-href="Publications.html#Publication-Table">
<div class="u-back-slide" data-image-width="1600" data-image-height="1600">
<img class="u-back-image u-expanded u-image-contain" src="images/2020B-pharmaceutics-12-00193-1.jpg" alt="More information below!">
</div>
<div class="u-align-center u-over-slide u-shading u-valign-bottom u-over-slide-10">
<h3 class="u-gallery-heading" style="font-weight: 700; line-height: 1.6; letter-spacing: 2px;">More information below!</h3>
<p class="u-gallery-text"></p>
</div>
</div>
<div class="u-carousel-item u-effect-fade u-gallery-item u-carousel-item-11" data-image-width="2245" data-image-height="2245" data-href="Publications.html#Publication-Table">
<div class="u-back-slide u-back-slide-11" data-image-width="1600" data-image-height="1600">
<img src="images/2020A-DeAraujoJunior2020_Article_CeramideAndPalmiticAcidInhibit-1.jpg" alt="More information below!" data-image-width="2000" data-image-height="1333" class="u-back-image u-expanded u-image-contain">
</div>
<div class="u-align-center u-over-slide u-shading u-valign-bottom u-over-slide-11">
<h3 class="u-gallery-heading" style="font-weight: 700; line-height: 1.6; letter-spacing: 2px;">More information below!</h3>
<p class="u-gallery-text"></p>
</div>
</div>
<div class="u-carousel-item u-effect-fade u-gallery-item u-carousel-item-12" data-image-width="2251" data-image-height="2251" data-href="Publications.html#Publication-Table">
<div class="u-back-slide" data-image-width="1600" data-image-height="1600">
<img class="u-back-image u-expanded u-image-contain" src="images/2021A-1-s2.0-S0142961220308267-main-1.jpg" alt="More information below!">
</div>
<div class="u-align-center u-over-slide u-shading u-valign-bottom u-over-slide-12">
<h3 class="u-gallery-heading" style="font-weight: 700; line-height: 1.6; letter-spacing: 2px;">More information below!</h3>
<p class="u-gallery-text"></p>
</div>
</div>
<div class="u-carousel-item u-effect-fade u-gallery-item u-carousel-item-13" data-image-width="2314" data-image-height="2314" data-href="Publications.html#Publication-Table">
<div class="u-back-slide" data-image-width="1600" data-image-height="1600">
<img class="u-back-image u-expanded u-image-contain" src="images/2021B-1-s2.0-S0928493120335979-main-1.jpg" alt="More information below!">
</div>
<div class="u-align-center u-over-slide u-shading u-valign-bottom u-over-slide-13">
<h3 class="u-gallery-heading" style="font-weight: 700; line-height: 1.6; letter-spacing: 2px;">More information below!</h3>
<p class="u-gallery-text"></p>
</div>
</div>
<div class="u-carousel-item u-effect-fade u-gallery-item u-carousel-item-14" data-image-width="2115" data-image-height="2115" data-href="Publications.html#Publication-Table">
<div class="u-back-slide" data-image-width="1600" data-image-height="1600">
<img class="u-back-image u-expanded u-image-contain" src="images/2021C-PIIS0959804921000010-1.jpg" alt="More information below!">
</div>
<div class="u-align-center u-over-slide u-shading u-valign-bottom u-over-slide-14">
<h3 class="u-gallery-heading" style="font-weight: 700; line-height: 1.6; letter-spacing: 2px;">More information below!</h3>
<p class="u-gallery-text"></p>
</div>
</div>
<div class="u-carousel-item u-effect-fade u-gallery-item u-carousel-item-15" data-href="Publications.html#Publication-Table">
<div class="u-back-slide" data-image-width="1600" data-image-height="1600">
<img class="u-back-image u-expanded u-image-contain" src="images/2021D-DAtri-2021-Nanoghosts-1.jpg" alt="More information below!">
</div>
<div class="u-align-center u-over-slide u-shading u-valign-bottom u-over-slide-15">
<h3 class="u-gallery-heading" style="font-weight: 700; line-height: 1.6; letter-spacing: 2px;">More information below!</h3>
<p class="u-gallery-text"></p>
</div>
</div>
<div class="u-carousel-item u-effect-fade u-gallery-item u-carousel-item-16" data-href="Publications.html#Publication-Table">
<div class="u-back-slide" data-image-width="1600" data-image-height="1600">
<img class="u-back-image u-expanded u-image-contain" src="images/2021E-molecules-26-03272-1.jpg" alt="More information below!">
</div>
<div class="u-align-center u-over-slide u-shading u-valign-bottom u-over-slide-16">
<h3 class="u-gallery-heading" style="font-weight: 700; line-height: 1.6; letter-spacing: 2px;">More information below!</h3>
<p class="u-gallery-text"></p>
</div>
</div>
<div class="u-carousel-item u-effect-fade u-gallery-item u-carousel-item-17" data-href="Publications.html#Publication-Table">
<div class="u-back-slide" data-image-width="1600" data-image-height="1600">
<img class="u-back-image u-expanded u-image-contain" src="images/2021F-pharmaceutics-13-01321-v2-1.jpg" alt="More information below!">
</div>
<div class="u-align-center u-over-slide u-shading u-valign-bottom u-over-slide-17">
<h3 class="u-gallery-heading" style="font-weight: 700; line-height: 1.6; letter-spacing: 2px;">More information below!</h3>
<p class="u-gallery-text"></p>
</div>
</div>
<div class="u-carousel-item u-effect-fade u-gallery-item u-carousel-item-18" data-image-width="1131" data-image-height="1600" data-href="Publications.html#Publication-Table">
<div class="u-back-slide" data-image-width="750" data-image-height="750">
<img class="u-back-image u-expanded u-image-contain" src="images/Paper-2022-Campos-Pharmaceutics-1.jpg" alt="More information below!">
</div>
<div class="u-align-center u-over-slide u-shading u-valign-bottom u-over-slide-18">
<h3 class="u-gallery-heading" style="font-weight: 700; line-height: 1.6; letter-spacing: 2px;">More information below!</h3>
<p class="u-gallery-text"></p>
</div>
</div>
<div class="u-carousel-item u-effect-fade u-gallery-item u-carousel-item-19" data-image-width="1600" data-image-height="1600">
<div class="u-back-slide">
<img class="u-back-image u-expanded u-image-contain" src="images/Paper-2022-Scognamiglio-MolTher-1.jpg" alt="More information below!">
</div>
<div class="u-align-center u-over-slide u-shading u-valign-bottom u-over-slide-19">
<h3 class="u-gallery-heading" style="font-weight: 700; line-height: 1.6; letter-spacing: 2px;">More information below!</h3>
<p class="u-gallery-text"></p>
</div>
<style data-mode="XL"></style>
<style data-mode="LG"></style>
<style data-mode="MD"></style>
<style data-mode="SM"></style>
<style data-mode="XS"></style>
</div>
<div class="u-carousel-item u-effect-fade u-gallery-item u-carousel-item-20" data-image-width="750" data-image-height="750">
<div class="u-back-slide" data-image-width="1600" data-image-height="1600">
<img class="u-back-image u-expanded u-image-contain" src="images/Paper-2022-Yu-Pharmaceutics-1.png" alt="More information below!">
</div>
<div class="u-align-center u-over-slide u-shading u-valign-bottom u-over-slide-20">
<h3 class="u-gallery-heading" style="font-weight: 700; line-height: 1.6; letter-spacing: 2px;">More information below!</h3>
<p class="u-gallery-text"></p>
</div>
<style data-mode="XL"></style>
<style data-mode="LG"></style>
<style data-mode="MD"></style>
<style data-mode="SM"></style>
<style data-mode="XS"></style>
</div>
<div class="u-carousel-item u-effect-fade u-gallery-item u-carousel-item-21" data-image-width="750" data-image-height="750">
<div class="u-back-slide" data-image-width="750" data-image-height="750">
<img class="u-back-image u-expanded u-image-contain" src="images/Paper-2022-Hao-Cancers-11.jpg" alt="More information below!">
</div>
<div class="u-align-center u-over-slide u-shading u-valign-bottom u-over-slide-21">
<h3 class="u-gallery-heading" style="font-weight: 700; line-height: 1.6; letter-spacing: 2px;">More information below!</h3>
<p class="u-gallery-text"></p>
</div>
<style data-mode="XL"></style>
<style data-mode="LG"></style>
<style data-mode="MD"></style>
<style data-mode="SM"></style>
<style data-mode="XS"></style>
</div>
<div class="u-carousel-item u-effect-fade u-gallery-item u-carousel-item-22" data-image-width="1600" data-image-height="839">
<div class="u-back-slide" data-image-width="750" data-image-height="750">
<img class="u-back-image u-expanded u-image-contain" src="images/Paper-2022-Jorquera-Pharmaceutics.jpg" alt="More information below!">
</div>
<div class="u-align-center u-over-slide u-shading u-valign-bottom u-over-slide-22">
<h3 class="u-gallery-heading" style="font-weight: 700; line-height: 1.6; letter-spacing: 2px;">More information below!</h3>
<p class="u-gallery-text"></p>
</div>
<style data-mode="XL"></style>
<style data-mode="LG"></style>
<style data-mode="MD"></style>
<style data-mode="SM"></style>
<style data-mode="XS"></style>
</div>
<div class="u-carousel-item u-effect-fade u-gallery-item u-carousel-item-23" data-image-width="750" data-image-height="750">
<div class="u-back-slide">
<img class="u-back-image u-expanded u-image-contain" src="images/Paper-2022-Garcia-Gels-08-00488-1.png" alt="More information below!">
</div>
<div class="u-align-center u-over-slide u-shading u-valign-bottom u-over-slide-23">
<h3 class="u-gallery-heading" style="font-weight: 700; line-height: 1.6; letter-spacing: 2px;">More information below!</h3>
<p class="u-gallery-text"></p>
</div>
<style data-mode="XL"></style>
<style data-mode="LG"></style>
<style data-mode="MD"></style>
<style data-mode="SM"></style>
<style data-mode="XS"></style>
</div>
<div class="u-carousel-item u-effect-fade u-gallery-item u-carousel-item-24" data-image-width="750" data-image-height="750">
<div class="u-back-slide">
<img class="u-back-image u-expanded u-image-contain" src="images/Paper-2022-Hao-MolecularBiomedicine-1.jpg" alt="More information below!">
</div>
<div class="u-align-center u-over-slide u-shading u-valign-bottom u-over-slide-24">
<h3 class="u-gallery-heading" style="font-weight: 700; line-height: 1.6; letter-spacing: 2px;">More information below!</h3>
<p class="u-gallery-text"></p>
</div>
<style data-mode="XL"></style>
<style data-mode="LG"></style>
<style data-mode="MD"></style>
<style data-mode="SM"></style>
<style data-mode="XS"></style>
</div>
<div class="u-carousel-item u-effect-fade u-gallery-item u-carousel-item-25" data-image-width="750" data-image-height="750">
<div class="u-back-slide">
<img class="u-back-image u-expanded u-image-contain" src="images/Paper-2022-Hao-MolecularBiomedicine-1.jpg" alt="More information below!">
</div>
<div class="u-align-center u-over-slide u-shading u-valign-bottom u-over-slide-25">
<h3 class="u-gallery-heading" style="font-weight: 700; line-height: 1.6; letter-spacing: 2px;">More information below!</h3>
<p class="u-gallery-text"></p>
</div>
<style data-mode="XL"></style>
<style data-mode="LG"></style>
<style data-mode="MD"></style>
<style data-mode="SM"></style>
<style data-mode="XS"></style>
</div>
<div class="u-carousel-item u-effect-fade u-gallery-item u-carousel-item-26" data-image-width="750" data-image-height="750">
<div class="u-back-slide">
<img class="u-back-image u-expanded u-image-contain" src="images/Paper-2022-Gu-J.Control.Release-1.png" alt="More information below!">
</div>
<div class="u-align-center u-over-slide u-shading u-valign-bottom u-over-slide-26">
<h3 class="u-gallery-heading" style="font-weight: 700; line-height: 1.6; letter-spacing: 2px;">More information below!</h3>
<p class="u-gallery-text"></p>
</div>
<style data-mode="XL"></style>
<style data-mode="LG"></style>
<style data-mode="MD"></style>
<style data-mode="SM"></style>
<style data-mode="XS"></style>
</div>
<div class="u-carousel-item u-effect-fade u-gallery-item u-carousel-item-27" data-image-width="750" data-image-height="750">
<div class="u-back-slide">
<img class="u-back-image u-expanded u-image-contain" src="images/Paper-2022-Yu-pharmaceutics-14-02796-2.png" alt="More information below!">
</div>
<div class="u-align-center u-over-slide u-shading u-valign-bottom u-over-slide-27">
<h3 class="u-gallery-heading" style="font-weight: 700; line-height: 1.6; letter-spacing: 2px;">More information below!</h3>
<p class="u-gallery-text"></p>
</div>
<style data-mode="XL"></style>
<style data-mode="LG"></style>
<style data-mode="MD"></style>
<style data-mode="SM"></style>
<style data-mode="XS"></style>
</div>
</div>
<a class="u-absolute-vcenter u-carousel-control u-carousel-control-prev u-grey-70 u-icon-circle u-opacity u-opacity-70 u-spacing-10 u-text-white u-carousel-control-1" href="#carousel-671c" role="button" data-u-slide="prev">
<span aria-hidden="true">
<svg viewBox="0 0 451.847 451.847"><path d="M97.141,225.92c0-8.095,3.091-16.192,9.259-22.366L300.689,9.27c12.359-12.359,32.397-12.359,44.751,0
c12.354,12.354,12.354,32.388,0,44.748L173.525,225.92l171.903,171.909c12.354,12.354,12.354,32.391,0,44.744
c-12.354,12.365-32.386,12.365-44.745,0l-194.29-194.281C100.226,242.115,97.141,234.018,97.141,225.92z"></path></svg>
</span>
<span class="sr-only">
<svg viewBox="0 0 451.847 451.847"><path d="M97.141,225.92c0-8.095,3.091-16.192,9.259-22.366L300.689,9.27c12.359-12.359,32.397-12.359,44.751,0
c12.354,12.354,12.354,32.388,0,44.748L173.525,225.92l171.903,171.909c12.354,12.354,12.354,32.391,0,44.744
c-12.354,12.365-32.386,12.365-44.745,0l-194.29-194.281C100.226,242.115,97.141,234.018,97.141,225.92z"></path></svg>
</span>
</a>
<a class="u-absolute-vcenter u-carousel-control u-carousel-control-next u-grey-70 u-icon-circle u-opacity u-opacity-70 u-spacing-10 u-text-white u-carousel-control-2" href="#carousel-671c" role="button" data-u-slide="next">
<span aria-hidden="true">
<svg viewBox="0 0 451.846 451.847"><path d="M345.441,248.292L151.154,442.573c-12.359,12.365-32.397,12.365-44.75,0c-12.354-12.354-12.354-32.391,0-44.744
L278.318,225.92L106.409,54.017c-12.354-12.359-12.354-32.394,0-44.748c12.354-12.359,32.391-12.359,44.75,0l194.287,194.284
c6.177,6.18,9.262,14.271,9.262,22.366C354.708,234.018,351.617,242.115,345.441,248.292z"></path></svg>
</span>
<span class="sr-only">
<svg viewBox="0 0 451.846 451.847"><path d="M345.441,248.292L151.154,442.573c-12.359,12.365-32.397,12.365-44.75,0c-12.354-12.354-12.354-32.391,0-44.744
L278.318,225.92L106.409,54.017c-12.354-12.359-12.354-32.394,0-44.748c12.354-12.359,32.391-12.359,44.75,0l194.287,194.284
c6.177,6.18,9.262,14.271,9.262,22.366C354.708,234.018,351.617,242.115,345.441,248.292z"></path></svg>
</span>
</a>
</div>
</div>
</section>
<section class="u-clearfix u-section-3" id="Publication-Table">
<div class="u-clearfix u-sheet u-sheet-1">
<div class="u-align-left u-table u-table-responsive u-table-1">
<table class="u-table-entity">
<colgroup>
<col width="8.4%">
<col width="2.04%">
<col width="82.61%">
<col width="3.52%">
<col width="2.84%">
<col width="0.59%">
</colgroup>
<thead class="u-palette-1-base u-table-header u-table-header-1">
<tr style="height: 75px;">
<th class="u-border-1 u-border-grey-dark-1 u-table-cell">First Author</th>
<th class="u-border-1 u-border-grey-dark-1 u-table-cell">Year</th>
<th class="u-border-1 u-border-grey-dark-1 u-table-cell">Title</th>
<th class="u-border-1 u-border-grey-dark-1 u-table-cell">Link</th>
<th class="u-border-1 u-border-grey-dark-1 u-table-cell">File</th>
<th class="u-table-cell u-text-grey-5 u-white u-table-cell-6">#</th>
</tr>
</thead>
<tbody class="u-grey-5 u-table-alt-palette-1-light-3 u-table-body u-table-body-1">
<tr style="height: 75px;">
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">T. Gomes de Carvalho</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">2023</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-1" href="Activities.html#Carvalho-2023a">Targeting M2-TAM via STAT3/NF-kB/AKT signaling pathway with oxaliplatin, retinoic acid, and Libidibia ferrea-loaded extracellular vesicles from macrophages 1 down-regulates murine colon cancer metastasis</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-2" href="https://www.preprints.org/manuscript/202305.1804/" target="_blank">Preprints</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">PDF</td>
<td class="u-align-right u-table-cell u-text-grey-5 u-white u-table-cell-12"></td>
</tr>
<tr style="height: 75px;">
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">S. Rezaei</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">2023</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-3" href="Activities.html#Rezaei-2023a">Erythrocyte-cancer hybrid membrane-coated reduction-sensitive nanoparticles for enhancing chemotherapy efficacy in breast cancer</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-4" href="https://doi.org/10.1016/j.bioadv.2023.213456" target="_blank">Journal</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-5" href="https://bit.ly/43hIxag">PDF</a>
</td>
<td class="u-align-right u-table-cell u-text-grey-5 u-white u-table-cell-18">31</td>
</tr>
<tr style="height: 75px;">
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-6" href="https://www.scopus.com/authid/detail.uri?authorId=57848676700" target="_blank">Z. Gu</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">2023</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-7" href="Activities.html#Gu-2023b">Enhancing anti-tumor immunity through liposomal oxaliplatin and localized immunotherapy via STING activation</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-8" href="https://pubmed.ncbi.nlm.nih.gov/37030544/" target="_blank">PubMed</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-9" href="https://bit.ly/3Lnn6yD">PDF</a>
</td>
<td class="u-align-right u-table-cell u-text-grey-5 u-white u-table-cell-24">30</td>
</tr>
<tr style="height: 75px;">
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-10" href="https://www.scopus.com/authid/detail.uri?authorId=55918530900" target="_blank">R.F. de Araújo Jr</a>.
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">2023</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-11" href="Activities.html#Araujo-2023a"> Retinoic acid-loaded PLGA nanocarriers targeting cell cholesterol potentialize the antitumour effect of PD-L1 antibody by preventing epithelial-mesenchymal transition mediated by M2-TAM in colorectal cancer</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-12" href="https://pubmed.ncbi.nlm.nih.gov/36857852/" target="_blank">PubMed</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-13" href="https://bit.ly/3kG1qTT">PDF</a>
</td>
<td class="u-align-right u-table-cell u-text-grey-5 u-white u-table-cell-30">29</td>
</tr>
<tr style="height: 75px;">
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-14" href="https://www.scopus.com/authid/detail.uri?authorId=57200536957" target="_blank">Y. He</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">2023</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-15" href="Activities.html#He-2023a">Effective breast cancer therapy based on palmitic acid-loaded PLGA nanoparticles</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-16" href="https://pubmed.ncbi.nlm.nih.gov/36603405/" target="_blank">PubMed</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-17" href="https://bit.ly/3Kp0wWc">PDF</a>
</td>
<td class="u-align-right u-table-cell u-text-grey-5 u-white u-table-cell-36">28</td>
</tr>
<tr style="height: 75px;">
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-18" href="https://www.scopus.com/authid/detail.uri?authorId=57209573057" target="_blank">Y. Hao</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">2023</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-19" href="Activities.html#Hao-2023a">Combination of photodynamic therapy and stimulator of interferon genes (STING) agonist inhibits colorectal tumor growth and recurrence</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-20" href="https://pubmed.ncbi.nlm.nih.gov/36688333/" target="_blank">PubMed</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-21" href="https://bit.ly/3XQTwV2">PDF</a>
</td>
<td class="u-align-right u-table-cell u-text-grey-5 u-white u-table-cell-42">27<br>
<br>
</td>
</tr>
<tr style="height: 75px;">
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-22" href="https://www.scopus.com/authid/detail.uri?authorId=57848676700" target="_blank">Z. Gu</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">2023</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-23" href="Activities.html#Gu-2023a">Effective combination of liposome-targeted chemotherapy and PD-L1 blockade of murine colon cancer</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-24" href="https://pubmed.ncbi.nlm.nih.gov/36460179/" target="_blank">PubMed</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-25" href="https://bit.ly/3iMRpTr">PDF</a>
</td>
<td class="u-align-right u-table-cell u-text-grey-5 u-white u-table-cell-48">26</td>
</tr>
<tr style="height: 75px;">
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-26" href="https://www.scopus.com/authid/detail.uri?authorId=57194714888" target="_blank">Z. Yu</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">2022</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-27" href="Activities-by-year/2022.html#Yu-2022b">Rare-earth-metal (Nd3+, Ce3+ and Gd3+)-doped CaF2: Nanoparticles for multimodal imaging in biomedical applications</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-28" href="https://pubmed.ncbi.nlm.nih.gov/36559291/" target="_blank">PubMed</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-29" href="https://bit.ly/3uPdKT1">PDF</a>
</td>
<td class="u-align-right u-table-cell u-text-grey-5 u-white u-table-cell-54">25</td>
</tr>
<tr style="height: 75px;">
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-30" href="https://www.scopus.com/authid/detail.uri?authorId=57209573057" target="_blank">Y. Hao</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">2022</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-31" href="Activities-by-year/2022.html#Hao-2022b">Combinatorial therapeutic approaches of photodynamic therapy and immune checkpoint blockade for colon cancer treatment</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-32" href="https://pubmed.ncbi.nlm.nih.gov/35974207/" target="_blank">PubMed</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-33" href="https://bit.ly/3UJJUut">PDF</a>
</td>
<td class="u-align-right u-table-cell u-text-grey-5 u-white u-table-cell-60">24</td>
</tr>
<tr style="height: 75px;">
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">J. García-Couce</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">2022</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-34" href="Activities-by-year/2022.html#Garcia-2022a">Thermosensitive injectable hydrogels for intra-articular delivery of etanercept for the treatment of osteoarthritis</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-35" href="https://pubmed.ncbi.nlm.nih.gov/36005089/" target="_blank">PubMed</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-36" href="https://bit.ly/3Srjop3">PDF</a>
</td>
<td class="u-align-right u-table-cell u-text-grey-5 u-white u-table-cell-66">23</td>
</tr>
<tr style="height: 75px;">
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-37" href="https://www.scopus.com/authid/detail.uri?authorId=57209573057" target="_blank">Y. Hao</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">2022</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-38" href="Activities-by-year/2022.html#Hao-2022a">Photodynamic therapy in combination with the hepatitis B core virus-like particles (HBc VLPs) to prime anticancer immunity for colorectal cancer treatment</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-39" href="https://pubmed.ncbi.nlm.nih.gov/35681703/" target="_blank">PubMed</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-40" href="https://bit.ly/3t5ql4i">PDF</a>
</td>
<td class="u-align-right u-table-cell u-text-grey-5 u-white u-table-cell-72">22</td>
</tr>
<tr style="height: 75px;">
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">C. Jorquera-Cordero</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">2022</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-41" href="Activities-by-year/2022.html#Jorquera-2022a">Extracellular vesicles from M1-polarized macrophages combined with hyaluronic acid and a β-blocker potentiate doxorubicin’s antitumor activity by downregulating TAMs in breast cancer</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-42" href="https://pubmed.ncbi.nlm.nih.gov/35631654/" target="_blank">PubMed</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-43" href="https://bit.ly/3MqWJWw">PDF</a>
</td>
<td class="u-align-right u-table-cell u-text-grey-5 u-white u-table-cell-78">21</td>
</tr>
<tr style="height: 75px;">
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-44" href="https://www.scopus.com/authid/detail.uri?authorId=57194714888" target="_blank">Z. Yu</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">2022</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-45" href="Activities-by-year/2022.html#Yu-2022a">Achieving effective multimodal imaging with rare-earth ion-doped CaF<span style="font-size: 0.625rem;">2</span> nanoparticles
</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-46" href="https://pubmed.ncbi.nlm.nih.gov/35456674/" target="_blank">PubMed</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-47" href="https://bit.ly/3E2BG9j">PDF</a>
</td>
<td class="u-align-right u-table-cell u-text-grey-5 u-white u-table-cell-84">20<br>
</td>
</tr>
<tr style="height: 75px;">
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">I. Scognamiglio</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">2022</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-48" href="Activities-by-year/2022.html#Scognamiglio-2022a">Exosomal microRNAs synergistically trigger stromal fibroblasts in breast cancer</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a href="https://pubmed.ncbi.nlm.nih.gov/35317202/" class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-49" target="_blank">PubMed</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a href="https://bit.ly/3sfZ7I7" class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-50">PDF</a>
</td>
<td class="u-align-right u-table-cell u-text-grey-5 u-white u-table-cell-90">19<br>
</td>
</tr>
<tr style="height: 75px;">
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">Y. Campos</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">2022</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-51" href="Activities-by-year/2022.html#Campos-2022a">The incorporation of etanercept into a porous tri-layer scaffold for restoring and repairing cartilage tissue</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-52" href="https://pubmed.ncbi.nlm.nih.gov/35214015/" target="_blank">PubMed</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-53" href="https://bit.ly/3r1ZXrf">PDF</a>
</td>
<td class="u-align-right u-table-cell u-text-grey-5 u-white u-table-cell-96">18</td>
</tr>
<tr style="height: 75px;">
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">A.L. C. de S.L.Oliveira</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">2021</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-54" href="Activities-by-year/2021.html#Oliveira-2021b">Nanocarriers as a tool for the treatment of colorectal cancer</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-55" href="https://pubmed.ncbi.nlm.nih.gov/34452282/" target="_blank">PubMed</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-56" href="https://bit.ly/3spNy1n">PDF</a>
</td>
<td class="u-align-right u-table-cell u-text-grey-5 u-white u-table-cell-102">17</td>
</tr>
<tr style="height: 75px;">
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">C. Morilla</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">2021</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-57" href="Activities-by-year/2021.html#Morilla-2021a">Effect of the addition of alginate and/or tetracycline on brushite cement properties</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-58" href="https://www.ncbi.nlm.nih.gov/pmc/articles/PMC8199332/" target="_blank">PubMed</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-59" href="https://bit.ly/3qhstU9">PDF</a>
</td>
<td class="u-align-right u-table-cell u-text-grey-5 u-white u-table-cell-108">16</td>
</tr>
<tr style="height: 75px;">
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">D. D'Atri</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">2021</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-60" href="Activities-by-year/2021.html#DAtri-2021a">Nanoghosts: Mesenchymal stem cells derived nanoparticles as a unique approach for cartilage regeneration</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-61" href="https://pubmed.ncbi.nlm.nih.gov/34015401/" target="_blank">PubMed</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-62" href="https://bit.ly/3qlY5br">PDF</a>
</td>
<td class="u-align-right u-table-cell u-text-grey-5 u-white u-table-cell-114">15</td>
</tr>
<tr style="height: 75px;">
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">V.M. Baart</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">2021</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-63" href="Activities-by-year/2021.html#Baart-2021a">A multimodal molecular imaging approach targeting urokinase plasminogen activator receptor for the diagnosis, resection and surveillance of urothelial cell carcinoma</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-64" href="https://pubmed.ncbi.nlm.nih.gov/33561783/" target="_blank">PubMed</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-65" href="https://bit.ly/3EnCjsy">PDF</a>
</td>
<td class="u-align-right u-table-cell u-text-grey-5 u-white u-table-cell-120">14</td>
</tr>
<tr style="height: 75px;">
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-66" href="https://www.scopus.com/authid/detail.uri?authorId=56457695800" target="_blank">L.J. Cruz</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">2021</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-67" href="Activities-by-year/2021.html#Cruz-2021a">PLGA-nanoparticles for intracellular delivery of the CRISPR-complex to elevate fetal globin expression in erythroid cells</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-68" href="https://pubmed.ncbi.nlm.nih.gov/33545840/" target="_blank">PubMed</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-69" href="https://bit.ly/3H7VNmH">PDF</a>
</td>
<td class="u-align-right u-table-cell u-text-grey-5 u-white u-table-cell-126">13</td>
</tr>
<tr style="height: 75px;">
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">A.L. C. de S.L.Oliveira</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">2021</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-70" href="Activities-by-year/2021.html#Oliveira-2021a">Maximizing the potency of oxaliplatin coated nanoparticles with folic acid for modulating tumor progression in colorectal cancer</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-71" href="https://pubmed.ncbi.nlm.nih.gov/33545840/" target="_blank">PubMed</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-72" href="https://bit.ly/3qkHhBh">PDF</a>
</td>
<td class="u-align-right u-table-cell u-text-grey-5 u-white u-table-cell-132">12</td>
</tr>
<tr style="height: 75px;">
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-73" href="https://www.scopus.com/authid/detail.uri?authorId=55918530900" target="_blank">R.F. de Araújo Jr</a>.
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">2020</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-74" href="Activities-by-year/2020.html#Araujo-2020a">Ceramide and palmitic acid inhibit macrophage-mediated epithelial-mesenchymal transition in colorectal cancer</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-75" href="https://pubmed.ncbi.nlm.nih.gov/32222879/" target="_blank">PubMed</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-76" href="https://bit.ly/3qeDgyx">PDF</a>
</td>
<td class="u-align-right u-table-cell u-text-grey-5 u-white u-table-cell-138">11</td>
</tr>
<tr style="height: 75px;">
<td class="u-border-1 u-border-grey-dark-1 u-table-cell"> A.L. C. de S.L.Oliveira</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">2020</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-77" href="Activities-by-year/2020.html#Oliveira-2020a">Effect of oxaliplatin-loaded poly (d,l-lactide-co-glycolic acid) (PLGA) nanoparticles combined with retinoic acid and cholesterol on apoptosis, drug resistance, and metastasis factors of colorectal cancer</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-78" href="https://www.ncbi.nlm.nih.gov/pmc/articles/PMC7076533/" target="_blank">PubMed</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-79" href="https://bit.ly/32gg1fi">PDF</a>
</td>
<td class="u-align-right u-table-cell u-text-grey-5 u-white u-table-cell-144">10</td>
</tr>
<tr style="height: 75px;">
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-80" href="https://www.scopus.com/authid/detail.uri?authorId=55658593800" target="_blank">T. Schomann</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">2020</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-81" href="Activities-by-year/2020.html#Schomann-2020a">Multimodal imaging of hair follicle bulge-derived stem cells in a mouse model of traumatic brain injury</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-82" href="https://pubmed.ncbi.nlm.nih.gov/32036485/" target="_blank">PubMed</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-83" href="https://bit.ly/3J9mBoG">PDF</a>
</td>
<td class="u-align-right u-table-cell u-text-grey-5 u-white u-table-cell-150">9</td>
</tr>
<tr style="height: 75px;">
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">V.B. Garcia</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">2019</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-84" href="Activities-by-year/2018---2019.html#Garcia-2019a">Environmentally compatible bioconjugated gold nanoparticles as efficient contrast agents for inflammation-induced cancer imaging</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-85" href="https://pubmed.ncbi.nlm.nih.gov/31102112/" target="_blank">PubMed</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-86" href="https://bit.ly/3J6AEvj">PDF</a>
</td>
<td class="u-align-right u-table-cell u-text-grey-5 u-white u-table-cell-156">8</td>
</tr>
<tr style="height: 75px;">
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-87" href="https://www.scopus.com/authid/detail.uri?authorId=55658593800" target="_blank">T. Schomann</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">2019</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-88" href="Activities-by-year/2018---2019.html#Schomann-2019b">Thesis: Multimodal visualization of adult stem cells in inner ear and brain pathology</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-89" href="https://scholarlypublications.universiteitleiden.nl/handle/1887/72413" target="_blank">Leiden University</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-90" href="https://bit.ly/3spLnLf">PDF</a>
</td>
<td class="u-table-cell u-white u-table-cell-162"></td>
</tr>
<tr style="height: 75px;">
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-91" href="https://www.scopus.com/authid/detail.uri?authorId=55658593800" target="_blank">T. Schomann</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">2019</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-92" href="Activities-by-year/2018---2019.html#Schomann-2019a">Imaging bioluminescent exogenous stem cells in the intact guinea pig cochlea</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a href="https://pubmed.ncbi.nlm.nih.gov/30635981/" class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-93" target="_blank">PubMed</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-94" href="https://bit.ly/32qlX5p">PDF</a>
</td>
<td class="u-align-right u-table-cell u-text-grey-5 u-white u-table-cell-168">7</td>
</tr>
<tr style="height: 75px;">
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-95" href="https://www.scopus.com/authid/detail.uri?authorId=55658593800" target="_blank">T. Schomann</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">2018</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-96" href="Activities-by-year/2018---2019.html#Schomann-2018a">Ouabain does not induce selective spiral ganglion cell degeneration in guinea pigs</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-97" href="https://pubmed.ncbi.nlm.nih.gov/30151372/" target="_blank">PubMed</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-98" href="https://bit.ly/3yQqlGH">PDF</a>
</td>
<td class="u-align-right u-table-cell u-text-grey-5 u-white u-table-cell-174">6</td>
</tr>
<tr style="height: 75px;">
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-99" href="https://www.scopus.com/authid/detail.uri?authorId=55658593800" target="_blank">T. Schomann</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">2017</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-100" href="Activities-by-year/2016---2017.html#Schomann-2017a">Neuronal differentiation of hair-follicle-bulge-derived stem cells co-cultured with mouse cochlear modiolus explants</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-101" href="https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5662184/" target="_blank">PubMed</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-102" href="https://bit.ly/3EnFCzY">PDF</a>
</td>
<td class="u-align-right u-table-cell u-text-grey-5 u-white u-table-cell-180">5</td>
</tr>
<tr style="height: 75px;">
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-103" href="https://www.scopus.com/authid/detail.uri?authorId=55658593800" target="_blank">T. Schomann</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">2016</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-104" href="Activities-by-year/2016---2017.html#Schomann-2016a">Lentiviral transduction and subsequent loading with nanoparticles do not affect cell viability and proliferation in hair-follicle-bulge-derived stem cells in vitro</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-105" href="https://pubmed.ncbi.nlm.nih.gov/27976505/" target="_blank">PubMed</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-106" href="https://bit.ly/3J8jptn">PDF</a>
</td>
<td class="u-align-right u-table-cell u-text-grey-5 u-white u-table-cell-186">4</td>
</tr>
<tr style="height: 75px;">
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">C.G. Gho</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">2016</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-107" href="Activities-by-year/2016---2017.html#Gho-2016a">Isolation, expansion and neural differentiation of stem cells from human plucked hair: A further step towards autologous nerve recovery</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-108" href="https://pubmed.ncbi.nlm.nih.gov/26702932/" target="_blank">PubMed</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-109" href="https://bit.ly/3FgBLGe">PDF</a>
</td>
<td class="u-align-right u-table-cell u-text-grey-5 u-white u-table-cell-192">3</td>
</tr>
<tr style="height: 75px;">
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">J.F. Greiner</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">2013</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-110" href="Activities-by-year/2012---2013.html#Greiner-2013a">1,8-cineol inhibits nuclear translocation of NF-kappaB p65 and NF-kappaB-dependent transcriptional activity</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-111" href="https://pubmed.ncbi.nlm.nih.gov/23872422/" target="_blank">PubMed</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-112" href="https://bit.ly/3mr7VYe">PDF</a>
</td>
<td class="u-align-right u-table-cell u-text-grey-5 u-white u-table-cell-198">2</td>
</tr>
<tr style="height: 75px;">
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-113" href="https://www.scopus.com/authid/detail.uri?authorId=55658593800" target="_blank">T. Schomann</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">2013</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-114" href="Activities-by-year/2012---2013.html#Schomann-2013a">Improved method for ex ovo-cultivation of developing chicken embryos can be used for human stem cell xenografts</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-115" href="https://pubmed.ncbi.nlm.nih.gov/23554818/" target="_blank">PubMed</a>
</td>
<td class="u-border-1 u-border-grey-dark-1 u-table-cell">
<a class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-116" href="https://bit.ly/3H7PKhZ">PDF</a>
</td>
<td class="u-align-right u-table-cell u-text-grey-5 u-white u-table-cell-204">1</td>
</tr>
</tbody>
</table>
</div>
</div>
</section>
<footer class="u-align-center u-clearfix u-footer u-grey-80 u-footer" id="Footer"><div class="u-clearfix u-sheet u-valign-middle u-sheet-1">
<p class="u-small-text u-text u-text-variant u-text-1"> ©2019 - 2023<br>Optimized for desktop screen resolution.
</p>
</div></footer>
</body></html>