Skip to content

Commit

Permalink
Merge pull request #6927 from lstagner/sub_super
Browse files Browse the repository at this point in the history
add unicode superscripts and subscripts to latex substitutions
  • Loading branch information
stevengj committed May 28, 2014
2 parents c0b1281 + 8713b4c commit 39bc1bc
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions base/latex_symbols.jl
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,53 @@ const latex_symbols = [
"\\cbrt" => "\u221B",
"\\female" => "",
"\\mars" => "",
"\\^0" => "",
"\\^1" => "¹",
"\\^2" => "²",
"\\^3" => "³",
"\\^4" => "",
"\\^5" => "",
"\\^6" => "",
"\\^7" => "",
"\\^8" => "",
"\\^9" => "",
"\\^+" => "",
"\\^-" => "",
"\\^=" => "",
"\\^(" => "",
"\\^)" => "",
"\\^n" => "",
"\\^i" => "",
"\\_0" => "",
"\\_1" => "",
"\\_2" => "",
"\\_3" => "",
"\\_4" => "",
"\\_5" => "",
"\\_6" => "",
"\\_7" => "",
"\\_8" => "",
"\\_9" => "",
"\\_+" => "",
"\\_-" => "",
"\\_=" => "",
"\\_(" => "",
"\\_)" => "",
"\\_a" => "",
"\\_e" => "",
"\\_o" => "",
"\\_x" => "",
"\\_schwa" => "",
"\\_h" => "",
"\\_k" => "",
"\\_l" => "",
"\\_m" => "",
"\\_n" => "",
"\\_p" => "",
"\\_s" => "",
"\\_t" => "",
"\\hbar" => "ħ",
"\\del" => "",

"\\sout" => "̶",# ulem package, same as Elzbar
"\\euro" => "",
Expand Down

0 comments on commit 39bc1bc

Please sign in to comment.