diff options
author | astrojhgu <astrojhgu@ed2142bd-67ad-457f-ba7c-d818d4011675> | 2011-06-03 16:46:39 +0000 |
---|---|---|
committer | astrojhgu <astrojhgu@ed2142bd-67ad-457f-ba7c-d818d4011675> | 2011-06-03 16:46:39 +0000 |
commit | 4f86074de547210ab383966d8c837020fec1f62c (patch) | |
tree | 6ca861268b793ddcf6e2ad3d5b7790dac9fc3c22 | |
parent | fd73460114ef47d45641bded30b28126e23570d8 (diff) | |
download | opt-utilities-4f86074de547210ab383966d8c837020fec1f62c.tar.bz2 |
git-svn-id: file:///home/svn/opt_utilities@208 ed2142bd-67ad-457f-ba7c-d818d4011675
-rwxr-xr-x | vmodels/latex2svg.sh | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/vmodels/latex2svg.sh b/vmodels/latex2svg.sh deleted file mode 100755 index 60061dc..0000000 --- a/vmodels/latex2svg.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/bash - -# 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 |