File: tipa.py

package info (click to toggle)
pyx 0.10-2
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 2,316 kB
  • ctags: 2,779
  • sloc: python: 16,243; ansic: 131; makefile: 87; sh: 9
file content (9 lines) | stat: -rw-r--r-- 295 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
import sys
sys.path.insert(0, "..")
from pyx import *

text.set(mode="latex", docclass="scrartcl", docopt="11pt", fontmaps="tipa.map")
text.preamble(r"\usepackage{tipa}")
c = canvas.canvas()
c.text(0, 0, r"\textipa{[%s]}" % sys.argv[1])
c.writePDFfile("tipa%s.pdf" % sys.argv[2], bboxenlarge=0)