-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathtest_superscript_subscript.py
More file actions
executable file
·57 lines (46 loc) · 2.24 KB
/
Copy pathtest_superscript_subscript.py
File metadata and controls
executable file
·57 lines (46 loc) · 2.24 KB
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
#!/usr/bin/env python3
# Append to effective python path so that can find plplot modules.
from plplot_python_start import *
import sys
import plplot as w
from numpy import *
# Parse and process command line arguments
w.plparseopts(sys.argv, w.PL_PARSE_FULL)
# Initialize plplot
w.plinit()
# Like yellow lines better.
w.plcol0(2)
w.pladv(0)
w.plvpor(0.2, 0.8, 0.2, 0.8)
w.plwind(0., 1., 0., 1.)
w.plbox("bcmnt", 0., 0, "bcmntv", 0., 0)
w.plptex(0.1, 0.8, 1., 0., 0.5, "p")
w.plptex(0.2, 0.8, 1., 0., 0.5, "o")
w.plptex(0.3, 0.8, 1., 0., 0.5, "b")
w.plptex(0.5, 0.8, 1., 0., 0.5, "x#d0#d1#d2")#u3#u4#u5#u6#u7#u8#d9#d0#d1")
w.plptex(0.5, 0.8, 1., 0., 0.5, "x#u0#u1#u2")#d3#d4#d5#d6#d7#d8#u9#u0#u1")
w.plptex(0.5, 0.6, 1., 0., 0.5, "#ga#uaa#gad#gdp#gr#gf#d, #ga#u#ga#gaad#gdp#gr#gf#d, B#ua#<italic/>a#gad#gdp#gr#gf#d, B#u#ga#gaad#gdp#gr#gf\n#ga#daa#gad#gdp#gr#gf#u, #ga#d#ga#gaad#gdp#gr#gf#u, B#da#<italic/>a#gad#gdp#gr#gf#u, B#d#ga#gaad#gdp#gr#gf\nB#uf#d, B#ur\nB#df#u, B#dr#u")
w.plptex(0.5, 0.2, 1., 0., 0.5, "First#u1\nSecond#d2")
w.pladv(0)
w.plvpor(0.2, 0.8, 0.2, 0.8)
w.plwind(0., 1.e-200, 0., 1.e-200)
w.plbox("bcmnt", 0., 0, "bcmntv", 0., 0)
# Some fiducial marks that show yoffset problems with the pdf device.
w.plmtex("t", -05.125, 0.1, 0.5, "p")
w.plmtex("t", -05.125, 0.2, 0.5, "o#d")
w.plmtex("t", -05.125, 0.3, 0.5, "b#u")
#w.plmtex("t", -10.250, 0.1, 0.5, "X")
#w.plmtex("t", -15.375, 0.1, 0.5, "X")
#w.plmtex("t", -20.500, 0.1, 0.5, "X")
# Roughly duplicate w.plptex tests of superscript/subscript without italics.
w.plmtex("t", -05.125, 0.5, 0.5, "x#d0#d1#d2#u3#u4#u5#u6#u7#u8#d9#d0#d1")
w.plmtex("t", -05.125, 0.5, 0.5, "x#u0#u1#u2#d3#d4#d5#d6#d7#d8#u9#u0#u1")
w.plmtex("t", -10.250, 0.5, 0.5, "#ga#uaa#gad#gdp#gr#gf#d, #ga#u#ga#gaad#gdp#gr#gf#d, B#uaa#gad#gdp#gr#gf#d, B#u#ga#gaad#gdp#gr#gf\n#ga#daa#gad#gdp#gr#gf#u, #ga#d#ga#gaad#gdp#gr#gf#u, B#daa#gad#gdp#gr#gf#u, B#d#ga#gaad#gdp#gr#gf\nB#uf#d, B#ur\nB#df#u, B#dr#u")
w.plmtex("t", -20.500, 0.5, 0.5, "First\nSecond")
# These four tests mimic what occurs for badly scaled w.plbox axes.
w.plmtex("t", 3.2, 1.0, 0.5, "(x10#u-100#d)")
w.plmtex("b", 3.2, 1.0, 0.5, "(x10#u-100#d)")
w.plmtex("t", 2.0, 0.0-0.02, 1.0, "(x10#u-100#d)")
w.plmtex("t", 2.0, 1.0+0.02, 0.0, "(x10#u-100#d)")
# Terminate plplot
w.plend()