This repository was archived by the owner on Mar 31, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbook.sh
More file actions
executable file
·50 lines (48 loc) · 1.54 KB
/
Copy pathbook.sh
File metadata and controls
executable file
·50 lines (48 loc) · 1.54 KB
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
#!/bin/bash
# Generate the .epub version of the book
echo "Generating EPUB"
pandoc book.md \
chap02/chap02.md \
chap03/chap03.md \
chap04/chap04.md \
chap04/chap04-linux.md \
chap04/chap04-windows.md \
chap05/chap05_0.md \
chap05/chap05-windows.md \
chap05/chap05-linux.md \
chap05/chap05_1.md \
chap06/chap06.md \
chap07/chap07.md \
chap08/chap08.md \
chap09/chap09.md \
chap10/chap10.md \
--toc \
--epub-stylesheet book.css \
-o VulkanApiBook.epub
# Generate the .pdf version of the book
echo "Generating PDF"
pandoc book.md \
chap02/chap02.md \
chap03/chap03.md \
chap04/chap04.md \
chap04/chap04-linux.md \
chap04/chap04-windows.md \
chap05/chap05_0.md \
chap05/chap05-windows.md \
chap05/chap05-linux.md \
chap05/chap05_1.md \
chap06/chap06.md \
chap07/chap07.md \
chap08/chap08.md \
chap09/chap09.md \
chap10/chap10.md \
--toc \
--latex-engine=xelatex \
--variable mainfont="Roboto" \
--variable sansfont="Fira Sans" \
--variable monofont="Fira Mono" \
--variable fontsize="11pt" \
-V geometry:margin="2.0cm" \
--chapters \
--highlight-style tango \
-o VulkanApiBook.pdf