ipe를 rubber에서 쓰려면
rubber는 latex, pdflatex을 위한 python script인데, 써보니 편하다.
xfig를 대체할 ipe로 만든 그림을 사용할때 pdf나 eps로 변환을 자동으로 하려면
rules.ini에 다음을 추가한다 (ubuntu에는 /usr/share/rubber/에 있다.)
그리고 ipetoipe가 깔려있어야 한다.
;– rule for ipe to pdf and eps
[ipe2pdf]
target = (.*)\.pdf
source = \1.ipe
cost = 0
rule = shell
command = ipetoipe -pdf $source $target
message = converting $source to $target[ipe2eps]
target = (.*)\.eps
source = \1.ipe
cost = 0
rule = shell
command = ipetoipe -eps $source $target
message = converting $source to $target
