forked from hadley/adv-r
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild-book.sh
executable file
·46 lines (43 loc) · 1.11 KB
/
build-book.sh
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
# pandoc --chapters -o fp.pdf --latex-engine xelatex \
# -f markdown+pipe_tables \
# -V papersize:oneside -V links-as-notes \
# Functional-programming.md \
# Functionals.md
pandoc --chapters -o programming.pdf --latex-engine xelatex \
-V papersize:oneside -V links-as-notes --toc \
Introduction.md \
pandoc/part-foundations.md \
Data-structures.md \
Subsetting.md \
Vocabulary.md \
Functions.md \
OO-essentials.md \
Environments.md \
Exceptions-debugging.md \
pandoc/part-fp.md \
Functional-programming.md \
Functionals.md \
Function-operators.md \
pandoc/part-adv.md \
Computing-on-the-language.md \
Expressions.md \
Formulas.md \
Special-environments.md \
dsl.md \
pandoc/part-perf.md \
Profiling.md \
Performance.md \
Rcpp.md \
C-interface.md
# pandoc --chapters -o packages.pdf --latex-engine xelatex \
# -V papersize:oneside -V links-as-notes --toc \
# Philosophy.md \
# package-basics.md \
# Package-development-cycle.md \
# Documenting-packages.md \
# Documenting-functions.md \
# Testing.md \
# style.md \
# Namespaces.md \
# git.md \
# Release.md