|
236 | 236 | '\\_' : ('cmtt10', 0x5f) |
237 | 237 | } |
238 | 238 |
|
239 | | -latex_to_cmex = { # Unused; delete once mathtext becomes private. |
240 | | - r'\__sqrt__' : 112, |
241 | | - r'\bigcap' : 92, |
242 | | - r'\bigcup' : 91, |
243 | | - r'\bigodot' : 75, |
244 | | - r'\bigoplus' : 77, |
245 | | - r'\bigotimes' : 79, |
246 | | - r'\biguplus' : 93, |
247 | | - r'\bigvee' : 95, |
248 | | - r'\bigwedge' : 94, |
249 | | - r'\coprod' : 97, |
250 | | - r'\int' : 90, |
251 | | - r'\leftangle' : 173, |
252 | | - r'\leftbrace' : 169, |
253 | | - r'\oint' : 73, |
254 | | - r'\prod' : 89, |
255 | | - r'\rightangle' : 174, |
256 | | - r'\rightbrace' : 170, |
257 | | - r'\sum' : 88, |
258 | | - r'\widehat' : 98, |
259 | | - r'\widetilde' : 101, |
260 | | -} |
261 | | - |
262 | | -latex_to_standard = { |
263 | | - r'\cong' : ('psyr', 64), |
264 | | - r'\Delta' : ('psyr', 68), |
265 | | - r'\Phi' : ('psyr', 70), |
266 | | - r'\Gamma' : ('psyr', 89), |
267 | | - r'\alpha' : ('psyr', 97), |
268 | | - r'\beta' : ('psyr', 98), |
269 | | - r'\chi' : ('psyr', 99), |
270 | | - r'\delta' : ('psyr', 100), |
271 | | - r'\varepsilon' : ('psyr', 101), |
272 | | - r'\phi' : ('psyr', 102), |
273 | | - r'\gamma' : ('psyr', 103), |
274 | | - r'\eta' : ('psyr', 104), |
275 | | - r'\iota' : ('psyr', 105), |
276 | | - r'\varphi' : ('psyr', 106), |
277 | | - r'\kappa' : ('psyr', 108), |
278 | | - r'\nu' : ('psyr', 110), |
279 | | - r'\pi' : ('psyr', 112), |
280 | | - r'\theta' : ('psyr', 113), |
281 | | - r'\rho' : ('psyr', 114), |
282 | | - r'\sigma' : ('psyr', 115), |
283 | | - r'\tau' : ('psyr', 116), |
284 | | - r'\upsilon' : ('psyr', 117), |
285 | | - r'\varpi' : ('psyr', 118), |
286 | | - r'\omega' : ('psyr', 119), |
287 | | - r'\xi' : ('psyr', 120), |
288 | | - r'\psi' : ('psyr', 121), |
289 | | - r'\zeta' : ('psyr', 122), |
290 | | - r'\sim' : ('psyr', 126), |
291 | | - r'\leq' : ('psyr', 163), |
292 | | - r'\infty' : ('psyr', 165), |
293 | | - r'\clubsuit' : ('psyr', 167), |
294 | | - r'\diamondsuit' : ('psyr', 168), |
295 | | - r'\heartsuit' : ('psyr', 169), |
296 | | - r'\spadesuit' : ('psyr', 170), |
297 | | - r'\leftrightarrow' : ('psyr', 171), |
298 | | - r'\leftarrow' : ('psyr', 172), |
299 | | - r'\uparrow' : ('psyr', 173), |
300 | | - r'\rightarrow' : ('psyr', 174), |
301 | | - r'\downarrow' : ('psyr', 175), |
302 | | - r'\pm' : ('psyr', 176), |
303 | | - r'\geq' : ('psyr', 179), |
304 | | - r'\times' : ('psyr', 180), |
305 | | - r'\propto' : ('psyr', 181), |
306 | | - r'\partial' : ('psyr', 182), |
307 | | - r'\bullet' : ('psyr', 183), |
308 | | - r'\div' : ('psyr', 184), |
309 | | - r'\neq' : ('psyr', 185), |
310 | | - r'\equiv' : ('psyr', 186), |
311 | | - r'\approx' : ('psyr', 187), |
312 | | - r'\ldots' : ('psyr', 188), |
313 | | - r'\aleph' : ('psyr', 192), |
314 | | - r'\Im' : ('psyr', 193), |
315 | | - r'\Re' : ('psyr', 194), |
316 | | - r'\wp' : ('psyr', 195), |
317 | | - r'\otimes' : ('psyr', 196), |
318 | | - r'\oplus' : ('psyr', 197), |
319 | | - r'\oslash' : ('psyr', 198), |
320 | | - r'\cap' : ('psyr', 199), |
321 | | - r'\cup' : ('psyr', 200), |
322 | | - r'\supset' : ('psyr', 201), |
323 | | - r'\supseteq' : ('psyr', 202), |
324 | | - r'\subset' : ('psyr', 204), |
325 | | - r'\subseteq' : ('psyr', 205), |
326 | | - r'\in' : ('psyr', 206), |
327 | | - r'\notin' : ('psyr', 207), |
328 | | - r'\angle' : ('psyr', 208), |
329 | | - r'\nabla' : ('psyr', 209), |
330 | | - r'\textregistered' : ('psyr', 210), |
331 | | - r'\copyright' : ('psyr', 211), |
332 | | - r'\texttrademark' : ('psyr', 212), |
333 | | - r'\Pi' : ('psyr', 213), |
334 | | - r'\prod' : ('psyr', 213), |
335 | | - r'\surd' : ('psyr', 214), |
336 | | - r'\__sqrt__' : ('psyr', 214), |
337 | | - r'\cdot' : ('psyr', 215), |
338 | | - r'\urcorner' : ('psyr', 216), |
339 | | - r'\vee' : ('psyr', 217), |
340 | | - r'\wedge' : ('psyr', 218), |
341 | | - r'\Leftrightarrow' : ('psyr', 219), |
342 | | - r'\Leftarrow' : ('psyr', 220), |
343 | | - r'\Uparrow' : ('psyr', 221), |
344 | | - r'\Rightarrow' : ('psyr', 222), |
345 | | - r'\Downarrow' : ('psyr', 223), |
346 | | - r'\Diamond' : ('psyr', 224), |
347 | | - r'\Sigma' : ('psyr', 229), |
348 | | - r'\sum' : ('psyr', 229), |
349 | | - r'\forall' : ('psyr', 34), |
350 | | - r'\exists' : ('psyr', 36), |
351 | | - r'\lceil' : ('psyr', 233), |
352 | | - r'\lbrace' : ('psyr', 123), |
353 | | - r'\Psi' : ('psyr', 89), |
354 | | - r'\bot' : ('psyr', 0o136), |
355 | | - r'\Omega' : ('psyr', 0o127), |
356 | | - r'\leftbracket' : ('psyr', 0o133), |
357 | | - r'\rightbracket' : ('psyr', 0o135), |
358 | | - r'\leftbrace' : ('psyr', 123), |
359 | | - r'\leftparen' : ('psyr', 0o50), |
360 | | - r'\prime' : ('psyr', 0o242), |
361 | | - r'\sharp' : ('psyr', 0o43), |
362 | | - r'\slash' : ('psyr', 0o57), |
363 | | - r'\Lambda' : ('psyr', 0o114), |
364 | | - r'\neg' : ('psyr', 0o330), |
365 | | - r'\Upsilon' : ('psyr', 0o241), |
366 | | - r'\rightbrace' : ('psyr', 0o175), |
367 | | - r'\rfloor' : ('psyr', 0o373), |
368 | | - r'\lambda' : ('psyr', 0o154), |
369 | | - r'\to' : ('psyr', 0o256), |
370 | | - r'\Xi' : ('psyr', 0o130), |
371 | | - r'\emptyset' : ('psyr', 0o306), |
372 | | - r'\lfloor' : ('psyr', 0o353), |
373 | | - r'\rightparen' : ('psyr', 0o51), |
374 | | - r'\rceil' : ('psyr', 0o371), |
375 | | - r'\ni' : ('psyr', 0o47), |
376 | | - r'\epsilon' : ('psyr', 0o145), |
377 | | - r'\Theta' : ('psyr', 0o121), |
378 | | - r'\langle' : ('psyr', 0o341), |
379 | | - r'\leftangle' : ('psyr', 0o341), |
380 | | - r'\rangle' : ('psyr', 0o361), |
381 | | - r'\rightangle' : ('psyr', 0o361), |
382 | | - r'\rbrace' : ('psyr', 0o175), |
383 | | - r'\circ' : ('psyr', 0o260), |
384 | | - r'\diamond' : ('psyr', 0o340), |
385 | | - r'\mu' : ('psyr', 0o155), |
386 | | - r'\mid' : ('psyr', 0o352), |
387 | | - r'\imath' : ('pncri8a', 105), |
388 | | - r'\%' : ('pncr8a', 37), |
389 | | - r'\$' : ('pncr8a', 36), |
390 | | - r'\{' : ('pncr8a', 123), |
391 | | - r'\}' : ('pncr8a', 125), |
392 | | - r'\backslash' : ('pncr8a', 92), |
393 | | - r'\ast' : ('pncr8a', 42), |
394 | | - r'\#' : ('pncr8a', 35), |
395 | | - |
396 | | - r'\circumflexaccent' : ('pncri8a', 124), # for \hat |
397 | | - r'\combiningbreve' : ('pncri8a', 81), # for \breve |
398 | | - r'\combininggraveaccent' : ('pncri8a', 114), # for \grave |
399 | | - r'\combiningacuteaccent' : ('pncri8a', 63), # for \accute |
400 | | - r'\combiningdiaeresis' : ('pncri8a', 91), # for \ddot |
401 | | - r'\combiningtilde' : ('pncri8a', 75), # for \tilde |
402 | | - r'\combiningrightarrowabove' : ('pncri8a', 110), # for \vec |
403 | | - r'\combiningdotabove' : ('pncri8a', 26), # for \dot |
404 | | -} |
405 | | - |
406 | 239 | # Automatically generated. |
407 | 240 |
|
408 | 241 | type12uni = { |
|
0 commit comments