File: textcomp.py

package info (click to toggle)
plastex 3.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,132 kB
  • sloc: python: 23,341; xml: 18,076; javascript: 7,755; ansic: 46; makefile: 40; sh: 26
file content (185 lines) | stat: -rw-r--r-- 3,009 bytes parent folder | download | duplicates (2)
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
from plasTeX import Command
from plasTeX.Base.LaTeX import Accents

class textleftarrow(Command):
    str = '←'

class textrightarrow(Command):
    str = '→'

class textuparrow(Command):
    str = '↑'

class textdownarrow(Command):
    str = '↓'

class textlbrackdbl(Command):
    str = '〚'

class textrbrackdbl(Command):
    str = '〛'

class textbigcircle(Command):
    str = '◯'

class textohm(Command):
    str = 'Ω'

class textmu(Command):
    str = 'µ'

class textpm(Command):
    str = '±'

class textdagger(Command):
    str = '†'

class textdaggerdbl(Command):
    str = '‡'

class textbardbl(Command):
    str = '‖'

class textbrokenbar(Command):
    str = '¦'

class textdegree(Command):
    str = '°'

class textbullet(Command):
    str = '•'

class textsurd(Command):
    str = '√'

class textordmasculine(Command):
    str = 'º'

class textordfeminine(Command):
    str = 'ª'

class textnumero(Command):
    str = '№'

class textcent(Command):
    str = '¢'

class textonequarter(Command):
    str = '\u00BC'

class textonehalf(Command):
    str = '\u00BD'

class textthreequarters(Command):
    str = '\u00BE'

class textzerooldstyle(Command):
    str = '0'

class textoneoldstyle(Command):
    str = '1'

class texttwooldstyle(Command):
    str = '2'

class textthreeoldstyle(Command):
    str = '3'

class textfouroldstyle(Command):
    str = '4'

class textfiveoldstyle(Command):
    str = '5'

class textsixoldstyle(Command):
    str = '6'

class textsevenoldstyle(Command):
    str = '7'

class texteightoldstyle(Command):
    str = '8'

class textnineoldstyle(Command):
    str = '9'

class textflorin(Command):
    str = '\u0192'

class textyen(Command):
    str = '\u00a5'

class textwon(Command):
    str = '\u20a9'

class textnaira(Command):
    str = '\u20a6'

class textpeso(Command):
    str = '\u20b1'

class textborn(Command):
    str = '\u2605'

class textdied(Command):
    str = '\u2020'

class textmarried(Command):
    str = '\u26ad'

class textdivorced(Command):
    str = '\u26ae'

class textcelsius(Command):
    str = '\u00b0C'

class textopenbullet(Command):
    str = '\u25e6'

class textdollaroldstyle(Command):
    str = '$'

class textsterling(Command):
    str = '\u00a3'

class textlira(Command):
    str = '\u20a4'

class textguarani(Command):
    str = '\u20b2'

class texteuro(Command):
    str = '\u20ac'

class textcentoldstyle(Command):
    str = '\u00a2'

class textestimated(Command):
    str = '\u212e'

class newtie(Accents.Accent):
    combining = '\u0311'

class capitaltie(Accents.t):
    macroName = None

class capitalacute(Accents.Acute):
    macroName = None

class capitaldieresis(Accents.Umlaut):
    macroName = None

class capitalbreve(Accents.Macron):
    macroName = None

class capitalnewtie(Accents.Accent):
    combining = '\u0311'

class capitalgrave(Accents.Grave):
    macroName = None

class capitaldotaccent(Accents.Dot):
    macroName = None

class capitalcedilla(Accents.c):
    macroName = None