forked from jules32/rmarkdown-website-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Research.html
1191 lines (1101 loc) · 50 KB
/
Research.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>
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta http-equiv="X-UA-Compatible" content="IE=EDGE" />
<title>Research</title>
<script src="site_libs/header-attrs-2.28/header-attrs.js"></script>
<script src="site_libs/jquery-3.6.0/jquery-3.6.0.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="site_libs/bootstrap-3.3.5/css/yeti.min.css" rel="stylesheet" />
<script src="site_libs/bootstrap-3.3.5/js/bootstrap.min.js"></script>
<script src="site_libs/bootstrap-3.3.5/shim/html5shiv.min.js"></script>
<script src="site_libs/bootstrap-3.3.5/shim/respond.min.js"></script>
<style>h1 {font-size: 34px;}
h1.title {font-size: 38px;}
h2 {font-size: 30px;}
h3 {font-size: 24px;}
h4 {font-size: 18px;}
h5 {font-size: 16px;}
h6 {font-size: 12px;}
code {color: inherit; background-color: rgba(0, 0, 0, 0.04);}
pre:not([class]) { background-color: white }</style>
<script src="site_libs/jqueryui-1.13.2/jquery-ui.min.js"></script>
<link href="site_libs/tocify-1.9.1/jquery.tocify.css" rel="stylesheet" />
<script src="site_libs/tocify-1.9.1/jquery.tocify.js"></script>
<script src="site_libs/navigation-1.1/tabsets.js"></script>
<link href="site_libs/highlightjs-9.12.0/textmate.css" rel="stylesheet" />
<script src="site_libs/highlightjs-9.12.0/highlight.js"></script>
<style type="text/css">
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
span.underline{text-decoration: underline;}
div.column{display: inline-block; vertical-align: top; width: 50%;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
ul.task-list{list-style: none;}
</style>
<style type="text/css">code{white-space: pre;}</style>
<script type="text/javascript">
if (window.hljs) {
hljs.configure({languages: []});
hljs.initHighlightingOnLoad();
if (document.readyState && document.readyState === "complete") {
window.setTimeout(function() { hljs.initHighlighting(); }, 0);
}
}
</script>
<style type = "text/css">
.main-container {
max-width: 940px;
margin-left: auto;
margin-right: auto;
}
img {
max-width:100%;
}
.tabbed-pane {
padding-top: 12px;
}
.html-widget {
margin-bottom: 20px;
}
button.code-folding-btn:focus {
outline: none;
}
summary {
display: list-item;
}
details > summary > p:only-child {
display: inline;
}
pre code {
padding: 0;
}
</style>
<style type="text/css">
.dropdown-submenu {
position: relative;
}
.dropdown-submenu>.dropdown-menu {
top: 0;
left: 100%;
margin-top: -6px;
margin-left: -1px;
border-radius: 0 6px 6px 6px;
}
.dropdown-submenu:hover>.dropdown-menu {
display: block;
}
.dropdown-submenu>a:after {
display: block;
content: " ";
float: right;
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
border-width: 5px 0 5px 5px;
border-left-color: #cccccc;
margin-top: 5px;
margin-right: -10px;
}
.dropdown-submenu:hover>a:after {
border-left-color: #adb5bd;
}
.dropdown-submenu.pull-left {
float: none;
}
.dropdown-submenu.pull-left>.dropdown-menu {
left: -100%;
margin-left: 10px;
border-radius: 6px 0 6px 6px;
}
</style>
<script type="text/javascript">
// manage active state of menu based on current page
$(document).ready(function () {
// active menu anchor
href = window.location.pathname
href = href.substr(href.lastIndexOf('/') + 1)
if (href === "")
href = "index.html";
var menuAnchor = $('a[href="' + href + '"]');
// mark the anchor link active (and if it's in a dropdown, also mark that active)
var dropdown = menuAnchor.closest('li.dropdown');
if (window.bootstrap) { // Bootstrap 4+
menuAnchor.addClass('active');
dropdown.find('> .dropdown-toggle').addClass('active');
} else { // Bootstrap 3
menuAnchor.parent().addClass('active');
dropdown.addClass('active');
}
// Navbar adjustments
var navHeight = $(".navbar").first().height() + 15;
var style = document.createElement('style');
var pt = "padding-top: " + navHeight + "px; ";
var mt = "margin-top: -" + navHeight + "px; ";
var css = "";
// offset scroll position for anchor links (for fixed navbar)
for (var i = 1; i <= 6; i++) {
css += ".section h" + i + "{ " + pt + mt + "}\n";
}
style.innerHTML = "body {" + pt + "padding-bottom: 40px; }\n" + css;
document.head.appendChild(style);
});
</script>
<!-- tabsets -->
<style type="text/css">
.tabset-dropdown > .nav-tabs {
display: inline-table;
max-height: 500px;
min-height: 44px;
overflow-y: auto;
border: 1px solid #ddd;
border-radius: 4px;
}
.tabset-dropdown > .nav-tabs > li.active:before, .tabset-dropdown > .nav-tabs.nav-tabs-open:before {
content: "\e259";
font-family: 'Glyphicons Halflings';
display: inline-block;
padding: 10px;
border-right: 1px solid #ddd;
}
.tabset-dropdown > .nav-tabs.nav-tabs-open > li.active:before {
content: "\e258";
font-family: 'Glyphicons Halflings';
border: none;
}
.tabset-dropdown > .nav-tabs > li.active {
display: block;
}
.tabset-dropdown > .nav-tabs > li > a,
.tabset-dropdown > .nav-tabs > li > a:focus,
.tabset-dropdown > .nav-tabs > li > a:hover {
border: none;
display: inline-block;
border-radius: 4px;
background-color: transparent;
}
.tabset-dropdown > .nav-tabs.nav-tabs-open > li {
display: block;
float: none;
}
.tabset-dropdown > .nav-tabs > li {
display: none;
}
</style>
<!-- code folding -->
<style type="text/css">
#TOC {
margin: 25px 0px 20px 0px;
}
@media (max-width: 768px) {
#TOC {
position: relative;
width: 100%;
}
}
@media print {
.toc-content {
/* see https://github.com/w3c/csswg-drafts/issues/4434 */
float: right;
}
}
.toc-content {
padding-left: 30px;
padding-right: 40px;
}
div.main-container {
max-width: 1200px;
}
div.tocify {
width: 20%;
max-width: 260px;
max-height: 85%;
}
@media (min-width: 768px) and (max-width: 991px) {
div.tocify {
width: 25%;
}
}
@media (max-width: 767px) {
div.tocify {
width: 100%;
max-width: none;
}
}
.tocify ul, .tocify li {
line-height: 20px;
}
.tocify-subheader .tocify-item {
font-size: 0.90em;
}
.tocify .list-group-item {
border-radius: 0px;
}
</style>
</head>
<body>
<div class="container-fluid main-container">
<!-- setup 3col/9col grid for toc_float and main content -->
<div class="row">
<div class="col-xs-12 col-sm-4 col-md-3">
<div id="TOC" class="tocify">
</div>
</div>
<div class="toc-content col-xs-12 col-sm-8 col-md-9">
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-bs-toggle="collapse" data-target="#navbar" data-bs-target="#navbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">Juliano Palacios Abrantes</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li>
<a href="Home.html">About me</a>
</li>
<li>
<a href="Research.html">Research</a>
</li>
<li>
<a href="Outreach.html">Outreach</a>
</li>
<li>
<a href="Diving.html">Diving</a>
</li>
<li>
<a href="Contact.html">Contact</a>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
</ul>
</div><!--/.nav-collapse -->
</div><!--/.container -->
</div><!--/.navbar -->
<div id="header">
<h1 class="title toc-ignore">Research</h1>
</div>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-HG1RRBT88J"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-HG1RRBT88J');
</script>
<p><img src="Images/Projects/lat_am_pesca.jpeg" width="800px"></p>
<p><br></p>
<hr />
<div id="credentials" class="section level2">
<h2>Credentials</h2>
<ul>
<li><p>Postdoctoral fellow (current) - <em>The Institute for the Oceans
and Fisheries, University of British Columbia (UBC),
Canada</em></p></li>
<li><p>PhD. Zoology (2021) - <em>The Institute for the Oceans and
Fisheries, University of British Columbia (UBC), Canada</em></p></li>
<li><p>MESM (2016) - <em>Bren School of Environmental Science and
Management, University of California at Santa Barbara (UCSB),
USA</em></p></li>
<li><p>B.S. Biology (2012) - <em>Universidad Autónoma Metropolitana
unidad Xochimilco (UAM-X), México</em></p></li>
</ul>
<hr />
</div>
<div id="main-research-lines" class="section level2">
<h2>Main Research Lines</h2>
<div style="float:left;position: relative; right: 10px;">
<p><img src="Images/Projects/Transboundary_Image.jpg" class="img-thumbnail" width="200px"></p>
</div>
<div id="management-of-shifting-shared-stocks" class="section level3">
<h3><a href="Projects/Transboundary.html">Management of shifting shared
stocks</a></h3>
<!-- **[Management of shifting shared stocks.](Projects/Transboundary.html)** -->
<p>Regulatory boundaries and species distributions often do not align.
This misalignment represents a challenge for fisheries management, as
policies tend to focus at the national level, yet international
collaborations are needed to maximize long-term ecological, social and
economic benefits of shared marine species. My research aims to better
understand (and inform) how fisheries management can prepare to shifts
in the distribution of shared stocks.</p>
<p><br></p>
<div style="float:left;position: relative; right: 10px;">
<p><img src="http://d2khr93zjdy3w9.cloudfront.net/Website/Official_MPA_map_April2016.png" class="img-thumbnail" width="200px"></p>
</div>
</div>
<div id="conservation-under-climate-change" class="section level3">
<h3><a href="Projects/conservation_cc.html">Conservation under climate
change</a></h3>
<!-- **[Conservation under climate change.](Projects/SESYNC.html)** -->
<p>Marine protected areas (MPAs) are an important tool in the context of
marine spatial planning to support both conservation and sustainable
harvesting. Marine species are shifting their distribution because of
climate change, potentially compromising the benefits and management
objectives of currently established MPAs. My research focuses on better
understanding the consequences of climate change to marine
conservation.</p>
<p><br></p>
<div style="float:left;position: relative; right: 10px;">
<p><img src="Images/Projects/PescadoLatino.png" alt="Lights" class="img-thumbnail" width="200px"></p>
</div>
</div>
<div id="ocean-management-in-latin-america" class="section level3">
<h3><a href="Projects/PescadoLatino.html">Ocean management in Latin
America</a></h3>
<!-- **[Ocean management in Latin America.](Projects/PescadoLatino.html)** -->
<p>Latin America is a highly diverse and dynamic region and there are
many contexts to fisheries management and conservation. Nevertheless,
there are several cross-cutting themes in Latin American countries, and
very likely throughout the region. As a Brazilian-Mexican citizen, I am
committed to support policy-making and resource management decisions in
Latin American countries with a strong interdisciplinary science.</p>
<p><br></p>
<hr />
</div>
</div>
<div id="scientific-publications" class="section level2">
<h2>Scientific Publications</h2>
<!-- NOTE: Use Harvard Bou. style -->
<center>
<p><a button type="button" class="btn btn-primary" href= "https://scholar.google.ca/citations?user=EZpBcjcAAAAJ&hl=en" >Google
Scholar Profile</a></button></p>
</center>
<div id="section" class="section level3">
<h3>2024</h3>
<ol start="38" style="list-style-type: decimal">
<li>Blanchard, J. L., Novaglio, C., Maury, O., Harrison, C. S., Petrik,
C. M., Fierro-Arcos, D., Ortega-Cisneros, K., Bryndum-Buchholz, A.,
Eddy, T. D., Heneghan, R., Roberts, K., Schewe, J., Bianchi, D., Guiet,
J., Denderen, P. D. van, <strong>Palacios-Abrantes, J.</strong>, Liu,
X., Stock, C. A., Rousseau, Y., Büchner, M., Adekoya, E. O., Bulman, C.,
Cheung, W., Christensen, V., Coll, M., Capitani, L., Datta, S., Fulton,
E. A., Fuster, A., Garza, V., Lengaigne, M., Lindmark, M., Murphy, K.,
Ouled-Cheikh, J., Prasad, S. S., Oliveros-Ramos, R., Reum, J. C., Rynne,
N., Scherrer, K. J. N., Shin, Y., Steenbeek, J., Woodworth-Jefcoats, P.,
Wu, Y. and Tittensor, D. P., 2024. Detecting, Attributing, and
Projecting Global Marine Ecosystem and Fisheries Change: FishMIP 2.0.
<em>Earth’s Future</em>, 12 (12).</li>
</ol>
<center>
<!-- Original article -->
<p><a span class="label label-primary" title ="" href= "https://agupubs.onlinelibrary.wiley.com/doi/full/10.1029/2023EF004402" target="_blank">Full
Paper</span></a> <!-- Github -->
<a span class="label label-warning" href= "https://fishmip.org/tools.html" target="_blank">
Tools</span></a> <!-- Data -->
<a span class="label label-warning" href= "https://www.isimip.org/outputdata/isimip-repository/" target="_blank">Data</span></a></p>
</center>
<ol start="37" style="list-style-type: decimal">
<li>Kaikkonen, L., Shellock, R. J., Selim, S. A., Ojwala, R. A., Dias,
B. S., Li, S., Addey, C. I., Gianelli, I., Maltby, K. M.,
Garcia-Morales, S., <strong>Palacios-Abrantes, J.</strong>, Jiang, S.,
Albo-Puigserver, M., Alonso, V. A. G., Baker, C. A., Bove, C. B.,
Brodie, S., Dahlet, L. I., Das, J., Dunne, A., Ferse, S. C. A.,
Johannesen, E., Jung, J., Garcia, E. M., Karcher, D. B., Mahadeo, S.,
Millan, L., Lawal, K. O., Oloko, A., Ortega-Cisneros, K.,
Otoabasi-Akpan, S., Roy, D., Rouf, S. S., Smoliński, S., Vaidianu, N.,
Whidden, C. and Strand, M., 2024. Fostering diversity, equity, and
inclusion in interdisciplinary marine science. <em>npj Ocean
Sustainability</em>, 3 (1), 49.</li>
</ol>
<center>
<!-- Original article -->
<p><a span class="label label-primary" title ="" href= "https://www.nature.com/articles/s44183-024-00087-1" target="_blank">Full
Paper</span></a></p>
</center>
<ol start="36" style="list-style-type: decimal">
<li>Cappa, P., Andreoli, V., La, C., <strong>Palacios-Abrantes,
J.</strong>, Reygondeau, G., Cheung, W. W. L. and Zeller, D., 2024.
Climate change undermines seafood micronutrient supply from wild-capture
fisheries in Southeast Asia and Pacific Island countries. <em>Science of
The Total Environment</em>, 177024.</li>
</ol>
<center>
<!-- Original article -->
<p><a span class="label label-primary" title ="" href= "https://kwnsfk27.r.eu-west-1.awstrack.me/L0/https:%2F%2Fdoi.org%2F10.1016%2Fj.scitotenv.2024.177024/1/01020192ad52d053-2523cd2b-6070-41f0-9b37-d180db481f77-000000/uOAcKiMq11xfQTi_YKUtxBb9tLo=396" target="_blank">Full
Paper</span></a> <!-- Press -->
<!-- <a span class="label label-info" href= "https://theconversation.com/accepting-uncertainty-in-sustainable-fisheries-is-essential-in-a-rapidly-changing-arctic-229559" target="_blank">The Conversation</span></a> -->
<!-- Data -->
<a span class="label label-warning" href= "https://ars.els-cdn.com/content/image/1-s2.0-S004896972407181X-mmc1.pdf" target="_blank">Data</span></a>
<!-- Github -->
<a span class="label label-warning" href= "https://github.com/jepa/ocea_nutri_cc" target="_blank">
Code </span></a></p>
</center>
<ol start="35" style="list-style-type: decimal">
<li>Mason, J. G., Bryndum-Buchholz, A., <strong>Palacios-Abrantes,
J.</strong>, Badhe, R., Morgante, I., Bianchi, D., Blanchard, J. L.,
Everett, J. D., Harrison, C. S., Heneghan, R. F., Novaglio, C. and
Petrik, C. M., 2024. Key Uncertainties and Modeling Needs for Managing
Living Marine Resources in the Future Arctic Ocean. <em>Earth’s
Future</em>, 12 (8).</li>
</ol>
<center>
<!-- Original article -->
<p><a span class="label label-primary" title ="" href= "https://agupubs.onlinelibrary.wiley.com/doi/10.1029/2023EF004393?af=R" target="_blank">Full
Paper</span></a> <!-- Press -->
<a span class="label label-info" href= "https://theconversation.com/accepting-uncertainty-in-sustainable-fisheries-is-essential-in-a-rapidly-changing-arctic-229559" target="_blank">The
Conversation</span></a> <!-- Data -->
<a span class="label label-warning" href= "https://github.com/jepa/an_uncertain_arctic?tab=readme-ov-file" target="_blank">Code
& Data</span></a></p>
</center>
<ol start="34" style="list-style-type: decimal">
<li>Vogel, J. M., Levine, A., Longo, C., Fujita, R., Alves, C. L.,
Carroll, G., Craig, J. K., Dancy, K., Errend, M., Essington, T. E.,
Farchadi, N., Glaser, S., Golden, A. S., Jensen, O. P., LeFlore, M.,
Mason, J. G., Mills, K. E., <strong>Palacios-Abrantes, J.</strong>,
Rogers, A., Samhouri, J. F., Seeley, M., Selig, E. R., Trudeau, A. and
Wabnitz, C. C. C., 2024. Fisheries in flux: Bridging science and policy
for climate-resilient management of US fisheries under distributional
change. <em>Marine Policy</em>, 170, 106385.</li>
</ol>
<center>
<!-- Original article -->
<p><a span class="label label-primary" title ="" href= "https://kwnsfk27.r.eu-west-1.awstrack.me/L0/https:%2F%2Fauthors.elsevier.com%2Fsd%2Farticle%2FS0308-597X(24)00383-X/1/01020191ca1b355c-68792af3-c982-4a48-bd18-10c99e4745e9-000000/B3J8v2QaXQk3QmCF2uzvzyGRVac=390" target="_blank">Full
Paper</span></a></p>
</center>
<ol start="33" style="list-style-type: decimal">
<li>Tai, T. C., <strong>Palacios-Abrantes, J.</strong>, Saltos, J. J.
A., Ban, N. C., Bryndum-Buchholz, A., Cheung, W. W. L., Courtenay, S.,
Harper, S., Hoover, C., Lotze, H. K., Steiner, N., Sumaila, U. R.,
Talloni-Álvarez, N., Whitney, C. K. and Wilson, K., 2024. Rapid Changes
across Canada’s Oceans and Their Impact on Coastal Communities. In:
Sumaila, U. R., Armitage, D., Bailey, M., and Cheung, W. W. L., eds. Sea
Change: Charting a Sustainable Future for Oceans in Canada. <em>UBC
Press</em>, 276.</li>
</ol>
<center>
<!-- Original article -->
<p><a span class="label label-primary" title ="Get chapter" href= "https://drive.google.com/open?id=1GJOpP1SERXe9x3ly6JZzNfcT1mIjAVjF&usp=drive_fs" target="_blank">Full
Chapter</span></a></p>
</center>
<ol start="32" style="list-style-type: decimal">
<li>Steiner, N. S., Bryndum-Buchholz, A., Cheung, W. W. L., Holdsworth,
A. M., Lotze, H. K., Nagabhatla, N., Newell, S. L., Okey, T. A.,
<strong>Palacios-Abrantes, J.</strong>, Sumaila, U. R., Tai, T. C.,
Wilson, K. L. and Inlet, C. of C., 2024. Large Changes in Canada’s
Oceans and Their Impacts on Ecosystems and Fisheries. In: Sumaila, U.
R., Armitage, D., Bailey, M., and Cheung, W. W. L., eds. Sea Change:
Charting a Sustainable Future for Oceans in Canada. <em>UBC Press</em>,
276.</li>
</ol>
<center>
<!-- Original article -->
<p><a span class="label label-primary" title ="Get chapter" href= "https://drive.google.com/open?id=1Fl4hUrF9scMzx69gTXIafW23SER41urf&usp=drive_fs" target="_blank">Full
Chapter</span></a></p>
</center>
<ol start="31" style="list-style-type: decimal">
<li>Beaty, F., Domínguez-Sánchez, P. S., Nalven, K. B.,
<strong>Palacios-Abrantes, J.</strong>, Oken, K. L., Ban, N. C.,
Nickols, K. J., Juanes, F., Okey, T. A., Spalding, A. K., Morzaria-Luna,
H. N., Jenkins, L. D., Tulloch, V. and McKechnie, I., 2024. Centering
relationships to place for more meaningful research and engagement.
<em>Proceedings of the National Academy of Sciences</em>, 121 (25),
e2306991121.</li>
</ol>
<center>
<!-- Original article -->
<p><a span class="label label-primary" title ="" href= "https://hdl.handle.net/1828/16604" target="_blank">Full
Paper</span></a> <!-- Press -->
<a span class="label label-info" href= "https://www.compassscicomm.org/leaders-for-sea-change-centering-relationships-to-place/" target="_blank">COMPASS</span></a></p>
</center>
<ol start="30" style="list-style-type: decimal">
<li>Cheung, W. W. L., <strong>Palacios-Abrantes, J.</strong> and
Roberts, S. M., 2024. Projecting contributions of marine protected areas
to rebuild fish stocks under climate change. <em>npj Ocean
Sustainability</em>, 3 (1), 11.</li>
</ol>
<center>
<!-- Original article -->
<p><a span class="label label-primary" title ="" href= "https://doi.org/10.1038/s44183-024-00046-w" target="_blank">Full
Paper</span></a> <!-- Press -->
<!-- <a span class="label label-info" href= "https://jepa.shinyapps.io/allocation_tool/" target="_blank">Dynamic tool</span></a> -->
<!-- Data -->
<a span class="label label-warning" href= "https://doi.org/10.5061/dryad.gf1vhhmtb" target="_blank">Data</span></a>
<!-- GitHub -->
<a span class="label label-warning" href= "https://github.com/coruubc/northsea_mpa_sust_fish" target="_blank">Code</span></a></p>
</center>
<ol start="29" style="list-style-type: decimal">
<li>Maureaud, A. A., <strong>Palacios-Abrantes, J.</strong>, Kitchel,
Z., Mannocci, L., Pinsky, M. L., Fredston, A., Beukhof, E., Forrest, D.
L., Frelat, R., Palomares, M. L. D., Pecuchet, L., Thorson, J. T.,
Denderen, P. D. van and Mérigot, B., 2024. FISHGLOB_data: an integrated
dataset of fish biodiversity sampled with scientific bottom-trawl
surveys. <em>Scientific Data</em>, 11 (1), 24.</li>
</ol>
<center>
<!-- Original article -->
<p><a span class="label label-primary" title ="" href= "https://www.nature.com/articles/s41597-023-02866-w" target="_blank">Full
Paper</span></a> <!-- Press -->
<!-- <a span class="label label-info" href= "https://jepa.shinyapps.io/allocation_tool/" target="_blank">Dynamic tool</span></a> -->
<!-- Data -->
<a span class="label label-warning" href= "https://github.com/AquaAuma/FishGlob_data" target="_blank">Code
& Data</span></a></p>
</center>
</div>
<div id="section-1" class="section level3">
<h3>2023</h3>
<ol start="28" style="list-style-type: decimal">
<li><strong>Palacios-Abrantes, J.</strong>, Crosson, S., Dumas, C.,
Fujita, R., Levine, A., Longo, C. and Jensen, O.P. 2023. Quantifying
fish range shifts across poorly defined management boundaries. <em>PLOS
ONE</em>, 18(1), p. e0279025.</li>
</ol>
<center>
<!-- Original article -->
<p><a span class="label label-primary" title ="" href= "https://doi.org/10.1371/journal.pone.0279025" target="_blank">Full
Paper</span></a> <!-- Press -->
<a span class="label label-info" href= "https://jepa.shinyapps.io/allocation_tool/" target="_blank">Dynamic
tool</span></a> <!-- Data -->
<a span class="label label-warning" href= "https://github.com/jepa/AcrossBoundaries" target="_blank">Code
& Data</span></a></p>
</center>
<ol start="27" style="list-style-type: decimal">
<li>Amon, D. J., <strong>Palacios-Abrantes, J.</strong>, Drazen, J. C.,
Lily, H., Nathan, N., Grient, J. M. A. van der and McCauley, D., 2023.
Climate change to drive increasing overlap between Pacific tuna
fisheries and emerging deep-sea mining industry. <em>npj Ocean
Sustainability</em>, 2 (1), 9.</li>
</ol>
<center>
<!-- Original article -->
<p><a span class="label label-primary" title ="" href= "https://www.nature.com/articles/s44183-023-00016-8" target="_blank">Full
Paper</span></a> <!-- Press -->
<a span class="label label-info" href= "https://www.reuters.com/science/deep-sea-mining-could-impact-tuna-fisheries-study-2023-07-11/?taid=64ad1da18148c70001f241db&utm_campaign=trueanthem&utm_medium=trueanthem&utm_source=twitter" target="_blank">Reuters</span></a>
<!-- Github -->
<a span class="label label-warning" href= "https://github.com/jepa/ccz_tuna" target="_blank">
Code </span></a> <!-- Data -->
<a span class="label label-warning" href= "https://osf.io/qa8w4/" target="_blank">Data</span></a></p>
</center>
<ol start="26" style="list-style-type: decimal">
<li>Fredston, A. L., Cheung, W. W. L., Frölicher, T. L., Kitchel, Z. J.,
Maureaud, A. A., Thorson, J. T., Auber, A., Mérigot, B.,
<strong>Palacios-Abrantes, J</strong>., Palomares, M. L. D., Pecuchet,
L., Shackell, N. L. and Pinsky, M. L., 2023. Marine heatwaves are not a
dominant driver of change in demersal fishes. <em>Nature</em>, 1–6.</li>
</ol>
<center>
<!-- Original article -->
<p><a span class="label label-primary" title ="" href= "https://drive.google.com/open?id=1EqkNBrJJjqoBC6XKl6vnWFditBdHy8vk&usp=drive_fs" target="_blank">Full
Paper</span></a> <!-- Press -->
<a span class="label label-info" href= "https://www.timescolonist.com/local-news/light-of-hope-bc-researchers-say-some-fish-surviving-heat-waves-better-than-once-thought-7493628" target="_blank">Times
Colonist</span></a> <!-- Github -->
<a span class="label label-warning" href= "https://github.com/afredston/marine_heatwaves_trawl" target="_blank">
Code </span></a> <!-- Data -->
<a span class="label label-warning" href= "https://doi.org/10.17605/OSF.IO/H6UKT" target="_blank">Data</span></a></p>
</center>
<ol start="25" style="list-style-type: decimal">
<li>Bryndum-Buchholz, A., Blanchard, J. L., Coll, M., Pontavice, H. D.,
Everett, J. D., Guiet, J., Heneghan, R. F., Maury, O., Novaglio, C.,
<strong>Palacios-Abrantes, J.</strong>, Petrik, C. M., Tittensor, D. P.
and Lotze, H. K., 2023. Applying ensemble ecosystem model projections to
future-proof marine conservation planning in the Northwest Atlantic
Ocean. <em>FACETS</em>, 8, 1–16.</li>
</ol>
<center>
<!-- Original article -->
<p><a span class="label label-primary" title ="" href= "https://www.facetsjournal.com/doi/10.1139/facets-2023-0024" target="_blank">Full
Paper</span></a> <!-- Press -->
<a span class="label label-info" href= "" target="_blank">Reuters</span></a></p>
</center>
<ol start="24" style="list-style-type: decimal">
<li>Spalding, A. K., Grorud-Colvert, K., Allison, E. H., Amon, D. J.,
Collin, R., Vos, A. de, Friedlander, A. M., Johnson, S. M., Mayorga, J.,
Paris, C. B., Scott, C., Suman, D. O., Cisneros-Montemayor, A. M.,
Estradivari, Giron-Nava, A., Gurney, G. G., Harris, J. M., Hicks, C.,
Mangubhai, S., Micheli, F., Naggea, J., Obura, D.,
<strong>Palacios-Abrantes, J.</strong>, Pouponneau, A. and Thurber, R.
V., 2023. Engaging the tropical majority to make ocean governance and
science more equitable and effective. <em>npj Ocean Sustainability</em>,
2 (1), 8.</li>
</ol>
<center>
<!-- Original article -->
<p><a span class="label label-primary" title ="" href= "https://www.nature.com/articles/s44183-023-00015-9" target="_blank">Full
Paper</span></a> <!-- Press -->
<a span class="label label-info" href= "https://stri.si.edu/story/ocean-protectors" target="_blank">Smithsonian
TRI</span></a> <!-- Spanish version -->
<a span class="label label-success" href= "./Translations/mayoria_tropical.html" target="_blank">Artículo
en Español</span></a></p>
</center>
<ol start="23" style="list-style-type: decimal">
<li>Vogel, J. M., Longo, C., Spijkers, J., <strong>Palacios-Abrantes,
J.</strong>, Mason, J., Wabnitz, C. C. C., Cheung, W., Sumaila, U. R.,
Munro, G., Glaser, S., Bell, J., Tian, Y., Shackell, N. L., Selig, E.
R., Billon, P. L., Watson, J. R., Hendrix, C., Pinsky, M. L., Putten, I.
van, Karr, K., Papaioannou, E. A. and Fujita, R., 2023. Drivers of
conflict and resilience in shifting transboundary fisheries. <em>Marine
Policy</em>, 155, 105740.</li>
</ol>
<center>
<!-- Original article -->
<p><a span class="label label-primary" title ="" href= "https://drive.google.com/open?id=1GN4DYD8pRXadp1RTaxReBSc1fkZZ4-YX&usp=drive_fs" target="_blank">Full
Paper</span></a> <!-- Press -->
<!-- <a span class="label label-info" href= "https://jepa.shinyapps.io/allocation_tool/" target="_blank">Dynamic tool</span></a> --></p>
</center>
<ol start="22" style="list-style-type: decimal">
<li><strong>Palacios-Abrantes, J.</strong>, Roberts, S. M., Cashion, T.,
ten Brink, T., Cheung, W.W.L, Mook A., and Nguyen, T. 2023.
Incorporating protected areas into global fish biomass projections under
climate change. <em>FACETS</em> 8: 1–16.</li>
</ol>
<center>
<!-- Original article -->
<p><a span class="label label-primary" title ="" href= "https://www.facetsjournal.com/doi/full/10.1139/facets-2022-0101" target="_blank">Full
Paper</span></a> <!-- Data -->
<a span class="label label-warning" href= "https://github.com/jepa/climatechangempa" target="_blank">Code
& Data</span></a></p>
</center>
<ol start="21" style="list-style-type: decimal">
<li>Pereira, L.M., Crespo, G.O., Amon, D.J., Badhe, R., Bandeira, S.,
Bengtsson, F., Boettcher, M., Carmine, G., Cheung, W.W.L., Chibwe, B.,
Dunn, D., Gasalla, M.A., Halouani, G., Johnson, D.E., Jouffray, J.-B.,
Juri, S., Keys, P.W., Lübker, H.M., Merrie, A.S., Obaidullah, F.,
<strong>Palacios-Abrantes, J.</strong>, Shannon, L.J., Sumaila, U.R.,
Superchi, E., Terry, N., Wabnitz, C.C.C., Yasuhara, M., Zhou, W., 2023.
The living infinite: Envisioning futures for transformed human-nature
relationships on the high seas. <em>Mar Policy</em> 153, 105644.</li>
</ol>
<center>
<!-- Original article -->
<p><a span class="label label-primary" title ="" href= "https://www.sciencedirect.com/science/article/pii/S0308597X23001719?via%3Dihub" target="_blank">Full
Paper</span></a> <!-- Press -->
<a span class="label label-info" href= "https://vector-bsfa.com/2022/09/30/the-living-infinite/" target="_blank">Vector
Sci-Fi</span></a></p>
</center>
</div>
<div id="section-2" class="section level3">
<h3>2022</h3>
<ol start="20" style="list-style-type: decimal">
<li><strong>Palacios-Abrantes, J.</strong>, Frölicher, T. L.,
Reygondeau, G., Sumaila, U. R., Tagliabue, A., Wabnitz, C. C. C., and
Cheung, W. W. L., 2022. Timing and magnitude of climate-driven range
shifts in transboundary fish stocks challenge their management.
<em>Global Change Biology</em>, 00, 1–17.</li>
</ol>
<center>
<!-- Original article -->
<p><a span class="label label-primary" title ="" href= "https://onlinelibrary.wiley.com/doi/10.1111/gcb.16058" target="_blank">Full
Paper</span></a> <!-- Press -->
<a span class="label label-info" href= "https://theconversation.com/managing-fish-stocks-shared-by-nations-must-focus-on-the-impacts-of-climate-change-181828" target="_blank">The
Consveration</span></a> <!-- Github -->
<a span class="label label-warning" href= "https://github.com/jepa/EmergingFish" target="_blank">
Code </span></a> <!-- Data -->
<a span class="label label-warning" href= "https://borealisdata.ca/dataset.xhtml?persistentId=doi:10.5683/SP3/TMPEHR" target="_blank">Data</span></a>
<!-- Spanish version -->
<a span class="label label-success" href= "./Translations/emerging_fish.html" target="_blank">Artículo
en Español</span></a></p>
</center>
<ol start="19" style="list-style-type: decimal">
<li><strong>Palacios-Abrantes, J.</strong>, Badhe, R., Bamford, A.,
Cheung, W.W.L., Foden, W., Santos, C.F., Grey, K.-A., Kühn, N.,
Maciejewski, K., McGhie, H., Midgley, G.F., Smit, I.P.J. and Pereira,
L.M. 2022. Managing biodiversity in the Anthropocene: discussing the
Nature Futures Framework as a tool for adaptive decision-making for
nature under climate change, <em>Sustainability Science</em>,
pp. 1–17.</li>
</ol>
<center>
<!-- Original article -->
<p><a span class="label label-primary" title ="" href= "https://doi.org/10.1007/s11625-022-01200-4" target="_blank">Full
Paper</span></a> <!-- Press -->
<a span class="label label-info" href= "https://oceans.ubc.ca/2022/10/28/nature-society-and-culture-should-be-taken-into-consideration-when-dealing-with-climate-change/" target="_blank">UBC
Stories</span></a></p>
</center>
<ol start="18" style="list-style-type: decimal">
<li>Cheung, W.W.L., <strong>Palacios‐Abrantes, J.</strong>, Frölicher,
T.L., Palomares, M.L., Clarke, T., Lam, V.W.Y., Oyinlola, M.A., Pauly,
D., Reygondeau, G., Sumaila, U.R., Teh, L.C.L. and Wabnitz, C.C.C. 2022.
Rebuilding fish biomass for the world’s marine ecoregions under climate
change, <em>Global Change Biology</em></li>
</ol>
<center>
<!-- Original article -->
<p><a span class="label label-primary" title ="Get paper" href= "https://onlinelibrary.wiley.com/share/author/KTTPKSFIWS2CBY3CPKDX?target=10.1111/gcb.16368" target="_blank">Full
Paper</span></a> <!-- Press -->
<a span class="label label-info" href= "https://news.ubc.ca/2022/09/01/global-fish-stocks-cant-rebuild-climate-change-overfishing/" target ="_blank">UBC
Stories</span></a> <!-- Data -->
<a span class="label label-warning" href= "10.5061/dryad.79cnp5hzf" target="_blank">Data</span></a></p>
</center>
<ol start="17" style="list-style-type: decimal">
<li>Cinner, J. E., Caldwell, I. R., Thiault, L., Ben, J., Blanchard, J.
L., Coll, M., Diedrich, A., Eddy, T. D., Everett, J. D., Folberth, C.,
Gascuel, D., Guiet, J., Gurney, G. G., Heneghan, R. F., Jägermeyr, J.,
Jiddawi, N., Lahari, R., Kuange, J., Liu, W., Maury, O., Müller, C.,
Novaglio, C., <strong>Palacios-Abrantes, J.</strong>, Petrik, C. M.,
Rabearisoa, A., Tittensor, D. P., Wamukota, A., and Pollnac, R., 2022.
Potential impacts of climate change on agriculture and fisheries
production in 72 tropical coastal communities. <em>Nature
Communications</em>, 13 (1), 3530–11.</li>
</ol>
<center>
<!-- Original article -->
<p><a span class="label label-primary" title ="Get paper" href= "https://www.nature.com/articles/s41467-022-30991-4" target="_blank">Full
Paper</span></a> <!-- Press -->
<!-- <a span class="label label-info" href= "https://oceans.ubc.ca/2021/11/15/massive-ensemble-climate-modelling-study-includes-work-of-multiple-iof-researchers/" target="_blank">UBC Stories</span></a> -->
<!-- Github -->
<a span class="label label-warning" href= "https://zenodo.org/record/6496413#.YsX17uzMKw4" target="_blank">
Code </span></a> <!-- Data -->
<a span class="label label-warning" href= "https://www.nature.com/articles/s41467-022-30991-4#data-availability" target="_blank">Data</span></a>
<!-- Spanish version -->
<!-- <a span class="label label-success" href= "./Translations/FishMip/cmip5_vs_cmip6.html" target="_blank">Artículo en Español</span></a> --></p>
</center>
</div>
<div id="section-3" class="section level3">
<h3>2021</h3>
<ol start="16" style="list-style-type: decimal">
<li>Tittensor, D. P., Novaglio, C., Harrison, C. S., Heneghan, R. F.,
Barrier, N., Bianchi, D., Bopp, L., Bryndum-Buchholz, A., Britten, G.
L., Büchner, M., Cheung, W. W. L., Christensen, V., Coll, M., Dunne, J.
P., Eddy, T. D., Everett, J. D., Fernandes-Salvador, J. A., Fulton, E.
A., Galbraith, E. D., Gascuel, D., Guiet, J., John, J. G., Link, J. S.,
Lotze, H. K., Maury, O., Ortega-Cisneros, K., <strong>Palacios-Abrantes,
J</strong>., Petrik, C. M., du Pontavice, H., Rault, J., Richardson, A.
J., Shannon, L., Shin, Y.-J., Steenbeek, J., Stock, C. A. and Blanchard,
J. L., 2021. Next-generation ensemble projections reveal higher climate
risks for marine ecosystems. <em>Nature Climate Change</em></li>
</ol>
<center>
<!-- Original article -->
<p><a span class="label label-primary" title ="Email me for PDF" href= "https://www.nature.com/articles/s41558-021-01173-9" target="_blank">Full
Paper</span></a> <!-- Press -->
<a span class="label label-info" href= "https://oceans.ubc.ca/2021/11/15/massive-ensemble-climate-modelling-study-includes-work-of-multiple-iof-researchers/" target="_blank">UBC
Stories</span></a> <!-- Github -->
<a span class="label label-warning" href= " https://github.com/Fish-MIP/CMIP5vsCMIP6" target="_blank">
Code </span></a> <!-- Data -->
<a span class="label label-warning" href= "https://www.isimip.org/gettingstarted/data-access/" target="_blank">Data</span></a>
<!-- Spanish version -->
<a span class="label label-success" href= "./Translations/FishMip/cmip5_vs_cmip6.html" target="_blank">Artículo
en Español</span></a></p>
</center>
<ol start="15" style="list-style-type: decimal">
<li>Heneghan, R.F., Galbraith, E., Blanchard, J.L., Harrison, C.,
Barrier, N., Bulman, C., Cheung, W., Coll, M., Eddy, T.D.,
Erauskin-Extramiana, M., Everett, J.D., Fernandes-Salvador, J.A.,
Gascuel, D., Guiet, J., Maury, O., <strong>Palacios-Abrantes,
J.</strong>, Petrik, C.M., du Pontavice, H., Richardson, A.J.,
Steenbeek, J., Tai, T.C., Volkholz, J., Woodworth-Jefcoats, P.A., and
Tittensor, D.P., 2021. Disentangling diverse responses to climate change
among global marine ecosystem models, <em>Progress in
Oceanography</em></li>
</ol>
<center>
<!-- Original article -->
<p><a span class="label label-primary" title ="Email me for PDF" href= "https://doi.org/10.1016/j.pocean.2021.102659" target="_blank">Full
Paper</span></a> <!-- Data -->
<a span class="label label-warning" href= "https://www.isimip.org/" target="_blank">
Data </span></a></p>
</center>
<ol start="14" style="list-style-type: decimal">
<li>Outeiro, L., Otero, J., Alonso-Fernández, A., Bañón, R., and
<strong>Palacios-Abrantes, J.</strong>, 2021. Quantifying abundance
trends and environmental effects on a population of queen scallop
Aequipecten opercularis targeted by artisanal fishers in a coastal
upwelling area (Ría de Arousa, NW Spain) using a Bayesian spatial model.
<em>Fisheries Research</em>, 240, 105963</li>
</ol>
<center>
<!-- Original article -->
<p><a span class="label label-primary" title ="Get paper" href= "https://drive.google.com/open?id=1GGNd8kGCaPXtyBclTRES1UqZbPxgsEmq&usp=drive_fs" target="_blank">Full
Paper</span></a></p>
</center>
<ol start="13" style="list-style-type: decimal">
<li>Sala, E., Mayorga, J., Bradley, D., Cabral, R. B., Atwood, T. B.,
Auber, A., Cheung, W. W. L., Costello, C., Ferretti, F., Friedlander, A.
M., Gaines, S. D., Garilao, C., Goodell, W., Halpern, B. S., Hinson, A.,
Kaschner, K., Kesner-Reyes, K., Leprieur, F., McGowan, J., Morgan, L.
E., Mouillot, D., <strong>Palacios-Abrantes, J.</strong>, Possingham, H.
P., Rechberger, K. D., Worm, B., and Lubchenco, J., 2021. Protecting the
global ocean for biodiversity, food and climate. <em>Nature</em>,
1–6.</li>
</ol>
<center>
<!-- Original article -->
<p><a span class="label label-primary" title ="Get paper" href= "https://drive.google.com/open?id=1GBxxRf2SFoE0Xwi2KosAlGLJfK-VDeLj&usp=drive_fs" target="_blank">Full
Paper</span></a> <!-- Press -->
<a span class="label label-info" href= "https://blog.nationalgeographic.org/2021/03/17/study-in-nature-protecting-the-ocean-delivers-a-comprehensive-solution-for-climate-fishing-and-biodiversity/" target="_blank">National
Geographic</span></a> <!-- Github -->
<a span class="label label-warning" href= " https://github.com/emlab-ucsb/ocean-conservation-priorities" target="_blank">
Code </span></a> <!-- Data -->
<a span class="label label-warning" href= "https://datadryad.org/stash/dataset/doi:10.25349/D9N89M" target="_blank">Data</span></a></p>
</center>
</div>
<div id="section-4" class="section level3">
<h3>2020</h3>
<ol start="12" style="list-style-type: decimal">
<li><strong>Palacios-Abrantes, J.</strong>, Reygondeau, G., Wabnitz, C.
C. C., and Cheung, W. W. L., 2020. The transboundary nature of the
world’s exploited marine species. <em>Scientific Reports</em>, 10 (1),
415–12. DOI: 10.1038/s41598-020-74644-2</li>
</ol>
<center>
<!-- Original article -->
<p><a span class="label label-primary" href= "https://www.nature.com/articles/s41598-020-74644-2" target="_blank">Full
Paper</span></a> <!-- Press -->
<a span class="label label-info" href= "https://oceans.ubc.ca/2020/10/21/transboundary/" target="_blank">UBC
Stories</span></a> <!-- Español -->
<a span class="label label-success" href= "https://www.julianopalacios.com/Translations/Fish_for_visa/Fish_for_visa_Esp.html" target="_blank">Artículo
en Español</span></a> <!-- Github -->
<a span class="label label-warning" href= "https://github.com/jepa/FishForVisa" target="_blank">
Code & Data </span></a></p>
</center>
<ol start="11" style="list-style-type: decimal">
<li><strong>Palacios-Abrantes, J.</strong>, Sumaila, U. R., and Cheung,
W. W. L., 2020. Challenges to transboundary fisheries management in
North America under climate change. <em>Ecology and Society</em>, 25
(4), art41–17. DOI: 10.5751/ES-11743-250441</li>
</ol>
<center>
<!-- Original article -->
<p><a span class="label label-primary" href= "https://www.ecologyandsociety.org/vol25/iss4/art41/" target="_blank">Full
Paper</span></a> <!-- Press -->
<!-- <a span class="label label-info" href= "" target="_blank">OceanCanada Stories</span></a> -->
<!-- Github -->
<a span class="label label-warning" href= "https://github.com/jepa/OC_Transboundary" target="_blank">
Code </span></a></p>
</center>
<ol start="10" style="list-style-type: decimal">
<li><strong>Palacios-Abrantes, J.</strong> and Cisneros-Montemayor, A.
M., 2020. Tendencias de la investigación pesquera en México: necesidades
y oportunidades para la adaptación al cambio climático. In: Mariño, U.
U. and Alcalá, G., eds. Pescadores en México y Cuba Retos y
oportunidades ante el cambio climático. Ciudad de México, México,
225.</li>
</ol>
<center>
<!-- Original article -->
<p><a span class="label label-primary" href= "https://drive.google.com/file/d/1-dJytrPLkqamDn51bZuZUs2d53zVt8gQ/view" target="_blank">Capítulo
de Libro</span></a></p>
</center>
<ol start="9" style="list-style-type: decimal">
<li>Sumaila, U. R., <strong>Palacios-Abrantes, J.</strong>, and Cheung,
W. W. L., 2020. Climate change, shifting threat points, and the
management of transboundary fish stocks. <em>Ecology and Society</em>,
25 (4), art40–9.</li>
</ol>
<center>
<!-- Original article -->
<p><a span class="label label-primary" href= "https://www.ecologyandsociety.org/vol25/iss4/art40/" target="_blank">Full
Paper</span></a> <!-- Press -->
<!-- <a span class="label label-info" href= "" target="_blank">OceanCanada Stories</span></a> -->
<!-- Github -->
<a span class="label label-warning" href= "https://github.com/jepa/OC_Transboundary" target="_blank">
Code </span></a></p>
</center>
<ol start="8" style="list-style-type: decimal">
<li>Cashion, T., Nguyen, T., Brink, ten, T., Mook, A.,
<strong>Palacios-Abrantes, J.</strong>, and Roberts, S. M., 2020.
Shifting seas, shifting boundaries: Dynamic marine protected area
designs for a changing climate. <em>PLoS ONE</em>, 15 (11),
e0241771.</li>
</ol>
<center>
<!-- Original article -->
<p><a span class="label label-primary" href= "" target="_blank">Full
Paper</span></a> <!-- Español -->
<a span class="label label-success" href= "https://www.julianopalacios.com/Translations/SESYNC/shifting_mpa_Esp.html" target="_blank">Artículo
en Español</span></a> <!-- Github -->
<a span class="label label-warning" href= "https://github.com/timcashion/shifting_mpas" target="_blank">
Code & Data </span></a></p>
</center>
<ol start="7" style="list-style-type: decimal">
<li>Cisneros-Montemayor, A., <strong>Palacios-Abrantes, J.</strong>,
Abas, M., Gonzalez, P. 2020. Análisis espacial de efectos anticipados
del cambio climático sobre la pesca en México: Un panorama para la
adaptación <em>Ciencia Pesquera</em>, 28 (1)</li>
</ol>
<center>
<!-- Spanish version -->
<p><a span class="label label-success" href= "https://www.gob.mx/cms/uploads/attachment/file/613551/03_Ciencia_Pesquera_28.pdf" target="_blank">Artículo
en Español</span></a></p>
</center>
<ol start="6" style="list-style-type: decimal">
<li>Andrews, E. J., Harper, S., Cashion, T., <strong>Palacios-Abrantes,
J.</strong>, Blythe, J., Daly, J., Eger, S., Hoover, C.,
Talloni-Álvarez, N., Teh, L., Bennett, N., Epstein, G., Knott, C.,
Newell, S. L., and Whitney, C. K., 2020. Supporting early career
researchers: insights from interdisciplinary marine scientists. <em>ICES
Journal of Marine Science</em>, 77 (2), 476–485. DOI:
10.1093/icesjms/fsz247</li>
</ol>
<!-- Paper Links -->
<center>
<!-- Original article -->
<p><a span class="label label-primary" href= "https://academic.oup.com/icesjms/advance-article/doi/10.1093/icesjms/fsz247/5704875" target="_blank">Full
Paper</span></a></p>
</center>