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.
This commit is contained in:
Matthew Flatt 2012-12-10 10:20:32 -07:00
parent 6aa6dc0400
commit fc112ccd46
2 changed files with 7 additions and 1 deletions

View File

@ -92,7 +92,7 @@
("Lambda" "Λ") ("Lambda" "Λ")
("Sigma" "Σ") ("Sigma" "Σ")
("Psi" "Ψ") ("Psi" "Ψ")
("Delta" "Δ") ("Delta" "Δ") ; <- this character is Unicode "increment", not Greek delta
("Xi" "Ξ") ("Xi" "Ξ")
("Upsilon" "Υ") ("Upsilon" "Υ")
("Omega" "Ω") ("Omega" "Ω")

View File

@ -853,6 +853,12 @@
[(#\♭) "$\\flat$"] [(#\♭) "$\\flat$"]
[(#\♮) "$\\natural$"] [(#\♮) "$\\natural$"]
[(#\√) "$\\surd$"] [(#\√) "$\\surd$"]
[(#\Δ) "$\\Delta$"] ; no better mapping for than \Delta for "increment"
[(#\u2211) "$\\sum$"] ; better than \Sigma, right?
[(#\u220F) "$\\prod$"] ; better than \Pi, right?
[(#\u2210) "$\\coprod$"]
[(#\u222B) "$\\int$"]
[(#\u222E) "$\\oint$"]
[(#\¬) "$\\neg$"] [(#\¬) "$\\neg$"]
[(#\△) "$\\triangle$"] [(#\△) "$\\triangle$"]
[(#\∀) "$\\forall$"] [(#\∀) "$\\forall$"]