blob: 6f44fa8256fe950128f070e441b364c1d2909421 (
plain)
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
|
#!/bin/bash
if [ $# -eq 1 ]
then
:
else
echo $#
echo "Usage $0 <base name>"
exit
fi
# you need gs-common, pstoedit and skencil to
# get this script working
export BASENAME="`basename $1 .tex`";
echo $BASENAME
latex ${BASENAME}.tex
dvips ${BASENAME}.dvi
# Outline fonts
eps2eps -dNOCACHE ${BASENAME}.ps ${BASENAME}2.ps
# Fix bounding box
ps2epsi ${BASENAME}2.ps ${BASENAME}.ps
rm ${BASENAME}2.ps
# Convert to Sketch
pstoedit -f sk ${BASENAME}.ps ${BASENAME}.sk
# Convert to SVG
skconvert ${BASENAME}.sk ${BASENAME}.svg
#echo -e return "\"\c" >${BASENAME}.info
echo "" >>${BASENAME}.svg
echo "std::string result;">${BASENAME}.info
#cat ${BASENAME}.svg | sed -e ':a;N;$!ba;s/\n//g' -e 's/\"/\\\"/g' >>${BASENAME}.info
cat ${BASENAME}.svg|while read line
do
line=`echo $line|sed -e 's/\"/\\\"/g'`
echo "result+=\"$line\";">>${BASENAME}.info
echo "result+=\"\\n\";">>${BASENAME}.info
done
echo "return result;" >>${BASENAME}.info
|