-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path03_render_chapters.R
53 lines (38 loc) · 2.01 KB
/
03_render_chapters.R
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
# Render chapters
library(esrindex)
# Aleutian Islands
make_esr_chapter(xml_path = "./chapters/AI_jellyfish.xml",
csl_path = "./chapters/citestyle.csl",
bib_path = "./chapters/esrindex.bib")
make_esr_chapter(xml_path = "./chapters/AI_misc_species.xml",
csl_path = "./chapters/citestyle.csl",
bib_path = "./chapters/esrindex.bib")
make_esr_chapter(xml_path = "./chapters/AI_structural_epifauna.xml",
csl_path = "./chapters/citestyle.csl",
bib_path = "./chapters/esrindex.bib")
# make_esr_chapter(xml_path = "./chapters/AI_forage_fish.xml",
# csl_path = "./chapters/citestyle.csl",
# bib_path = "./chapters/esrindex.bib")
# Eastern Bering Sea/Northern Bering Sea
make_esr_chapter(xml_path = "./chapters/EBS_jellyfish.xml",
csl_path = "./chapters/citestyle.csl",
bib_path = "./chapters/esrindex.bib")
make_esr_chapter(xml_path = "./chapters/EBS_misc_species.xml",
csl_path = "./chapters/citestyle.csl",
bib_path = "./chapters/esrindex.bib")
make_esr_chapter(xml_path = "./chapters/EBS_structural_epifauna.xml",
csl_path = "./chapters/citestyle.csl",
bib_path = "./chapters/esrindex.bib")
# Gulf of Alaska
make_esr_chapter(xml_path = "./chapters/GOA_jellyfish.xml",
csl_path = "./chapters/citestyle.csl",
bib_path = "./chapters/esrindex.bib")
make_esr_chapter(xml_path = "./chapters/GOA_misc_species.xml",
csl_path = "./chapters/citestyle.csl",
bib_path = "./chapters/esrindex.bib")
make_esr_chapter(xml_path = "./chapters/GOA_structural_epifauna.xml",
csl_path = "./chapters/citestyle.csl",
bib_path = "./chapters/esrindex.bib")
make_esr_chapter(xml_path = "./chapters/GOA_forage_fish.xml",
csl_path = "./chapters/citestyle.csl",
bib_path = "./chapters/esrindex.bib")