-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathtex2html.sh
executable file
·118 lines (105 loc) · 2.98 KB
/
tex2html.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
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
for fn in index
do
pandoc index.tex \
--output _build/html/$fn.html \
--template _static/template.html5 \
--css bootstrap.min.css \
--css style.css \
--toc \
--toc-depth=3 \
--citeproc \
--bibliography=references.bib \
--csl=_static/acm-siggraph.csl \
--mathjax \
--variable editat=$fn \
--extract-media _build/html
done
for file in content/*.tex
do
fn=${file%.tex}
pandoc $file \
--output _build/html/$fn.html \
--template _static/template.html5 \
--css bootstrap.min.css \
--css style.css \
--toc \
--toc-depth=3 \
--citeproc \
--bibliography=references.bib \
--csl=_static/acm-siggraph.csl \
--mathjax \
--variable rootdir="../" \
--variable editat=$fn \
--extract-media _build/html
done
for file in content/ads-b/*.tex
do
fn=${file%.tex}
pandoc $file \
--output _build/html/$fn.html \
--template _static/template.html5 \
--css bootstrap.min.css \
--css style.css \
--toc \
--toc-depth=3 \
--citeproc \
--bibliography=references.bib \
--csl=_static/acm-siggraph.csl \
--mathjax \
--variable rootdir="../../" \
--variable editat=$fn \
--extract-media _build/html
done
for file in content/mode-s/*.tex
do
fn=${file%.tex}
pandoc $file \
--output _build/html/$fn.html \
--template _static/template.html5 \
--css bootstrap.min.css \
--css style.css \
--toc \
--toc-depth=3 \
--citeproc \
--bibliography=references.bib \
--csl=_static/acm-siggraph.csl \
--mathjax \
--variable rootdir="../../" \
--variable editat=$fn \
--extract-media _build/html
done
for file in misc/*.tex
do
fn=${file%.tex}
pandoc $file \
--output _build/html/$fn.html \
--template _static/template.html5 \
--css bootstrap.min.css \
--css style.css \
--toc \
--toc-depth=3 \
--citeproc \
--bibliography=references.bib \
--csl=_static/acm-siggraph.csl \
--mathjax \
--variable rootdir="../" \
--variable editat=$fn
done
find _build/html/content/ -name '*.html' -exec sed -i 's/embed\(.*\)pdf/img\1png/g' {} \;
find _build/html/content/ads-b/ -maxdepth 1 -name '*.html' -exec sed -i 's/_build\/html/\.\.\/\.\./g' {} \;
find _build/html/content/mode-s/ -maxdepth 1 -name '*.html' -exec sed -i 's/_build\/html/\.\.\/\.\./g' {} \;
find _build/html/content/ -maxdepth 1 -name '*.html' -exec sed -i 's/_build\/html/\.\./g' {} \;
find _build/html/ -maxdepth 1 -name '*.html' -exec sed -i 's/_build\/html\///g' {} \;
sed -i 's/embed\(.*\)pdf/img\1png/g' _build/html/index.html;
sed -i 's/<img/<img class="cover" /g' _build/html/index.html;
cd _build/html/
# for pdf_file in *.pdf ; do
# echo "converting ${pdf_file}"
# convert -density 100 "${pdf_file}" -colorspace RGB "${pdf_file%.*}".png
# rm ${pdf_file}
# done
find cover figures -type f -name '*.pdf' -print0 |
while IFS= read -r -d '' pdf_file; do
convert -density 100 "${pdf_file}" -colorspace RGB "${pdf_file%.*}".png
rm ${pdf_file}
done