gui/collects/mrlib/tex-table.rkt
Matthew Flatt 25d5566c58 scribble: render "incremement" and some other chars for Latex/PDF
This change was prompted by the change to DrRacket's "\Delta"
to produce the Unicode "increment" character.

original commit: fc112ccd4627f0b7413ba17a81d050bb840a79b3
2012-12-10 10:20:32 -07:00

197 lines
4.0 KiB
Racket
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#lang scheme/base
(require scheme/contract)
(define (string-len-one? x)
(and (string? x)
(= 1 (string-length x))))
(provide/contract
[tex-shortcut-table
(listof (list/c string? string-len-one?))])
(define tex-shortcut-table
'(("Downarrow" "")
("nwarrow" "")
("downarrow" "")
("Rightarrow" "")
("rightarrow" "")
("mapsto" "")
("searrow" "")
("swarrow" "")
("leftarrow" "")
("uparrow" "")
("Leftarrow" "")
("longrightarrow" "")
("Uparrow" "")
("Leftrightarrow" "")
("updownarrow" "")
("leftrightarrow" "")
("nearrow" "")
("Updownarrow" "")
;; arrows that didn't come out right in copy & paste
;←− \longleftarrow
;⇐= \Longleftarrow
;← 􏰂 \hookleftarrow
;←→ \longleftrightarrow
;􏰁 → \hookrightarrow
;⇐⇒ \Longleftrightarrow
;􏴲 \leadsto
;􏰃−→ \longmapsto
;=⇒ \Longrightarrow
;􏰃→ \mapsto
("aleph" "א")
("prime" "")
("emptyset" "")
("nabla" "")
("diamondsuit" "")
("spadesuit" "")
("clubsuit" "")
("heartsuit" "")
("sharp" "")
("flat" "")
("natural" "")
("surd" "")
("neg" "¬")
("triangle" "")
("forall" "")
("exists" "")
("infty" "")
("circ" "")
("alpha" "α")
("theta" "θ")
("tau" "τ")
("beta" "β")
("vartheta" "θ")
("pi" "π")
("upsilon" "υ")
("gamma" "γ")
("varpi" "π")
("phi" "φ")
("delta" "δ")
("kappa" "κ")
("rho" "ρ")
("varphi" "φ")
("epsilon" "ε")
("lambda" "λ")
("varrho" "ρ")
("chi" "χ")
("varepsilon" "ε")
("mu" "μ")
("sigma" "σ")
("psi" "ψ")
("zeta" "ζ")
("nu" "ν")
("varsigma" "ς")
("omega" "ω")
("eta" "η")
("xi" "ξ")
("iota" "ι")
("Gamma" "Γ")
("Lambda" "Λ")
("Sigma" "Σ")
("Psi" "Ψ")
("Delta" "Δ") ; <- this character is Unicode "increment", not Greek delta
("Xi" "Ξ")
("Upsilon" "Υ")
("Omega" "Ω")
("Theta" "Θ")
("Pi" "Π")
("Phi" "Φ")
("pm" "±")
("cap" "")
("diamond" "")
("oplus" "")
("mp" "")
("cup" "")
("bigtriangleup" "")
("ominus" "")
("times" "×")
("uplus" "")
("bigtriangledown" "")
("otimes" "")
("div" "÷")
("sqcap" "")
("triangleright" "")
("oslash" "")
("ast" "")
("sqcup" "")
("vee" "")
("wedge" "")
("triangleleft" "")
("odot" "")
("star" "")
("dagger" "")
("bullet" "")
("ddagger" "")
("wr" "")
("amalg" "⨿")
("leq" "")
("geq" "")
("equiv" "")
("models" "")
("prec" "")
("succ" "")
("sim" "")
("perp" "")
("bot" "")
("top" "")
("preceq" "")
("succeq" "")
("simeq" "")
("ll" "")
("gg" "")
("asymp" "")
("parallel" "")
("subset" "")
("supset" "")
("approx" "")
("bowtie" "")
("subseteq" "")
("supseteq" "")
("cong" "")
("sqsubsetb" "")
("sqsupsetb" "")
("neq" #;"" "")
("smile" "")
("sqsubseteq" "")
("sqsupseteq" "")
("doteq" "")
("frown" "")
("in" "")
("ni" "")
("propto" "")
("vdash" "")
("dashv" "")
("cdot" "·")
("sqrt" "")
("skull" "")
("smiley" "")
("blacksmiley" "")
("frownie" "")
("S" "§")
("newpage" "\f")
))
;; checks to see if there are duplicates
#;
(define (find-dups)
(let ([ht (make-hash)])
(for-each
(λ (line)
(let ([name (list-ref line 0)]
[obj (list-ref line 1)])
(hash-set! ht name (cons obj (hash-ref ht name '())))))
tex-shortcut-table)
(hash-for-each
ht
(λ (k v)
(unless (= 1 (length v))
(printf "~s -> ~s\n" k v))))))