Skip to content

Commit a16c3db

Browse files
authored
Merge pull request #22 from JuliaString/spj/update
Update LaTeX entity tables with additions to Julia REPL
2 parents d596d46 + d168d2a commit a16c3db

File tree

4 files changed

+13
-16
lines changed

4 files changed

+13
-16
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ keywords = ["Entities", "LaTeX"]
44
license = "MIT"
55
name = "LaTeX_Entities"
66
uuid = "9927f19a-46ce-5bdd-a20a-f46a78b61e3d"
7-
version = "1.0.0"
7+
version = "1.0.1"
88

99
[deps]
1010
StrTables = "9700d1a9-a7c8-5760-9816-a99fda30bb8f"

data/README.md

Lines changed: 0 additions & 11 deletions
This file was deleted.

data/latex.dat

107 Bytes
Binary file not shown.

src/manual_latex.jl

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -109,10 +109,6 @@ const replace_name = (
109109
"Eulerconst" => "eulermascheroni",
110110
"Hermaphrodite" => "hermaphrodite",
111111
"Planckconst" => "planck",
112-
"bkarow" => "bkarrow",
113-
"dbkarow" => "dbkarrow",
114-
"hksearow" => "hksearrow",
115-
"hkswarow" => "hkswarrow"
116112
)
117113

118114
const manual = [
@@ -152,6 +148,14 @@ const manual = [
152148
"bigsetminus" => "\u29f5", # add to allow access to standard setminus
153149
"circlearrowleft" => "\u21ba", # ↺ synonym of acwopencirclearrow
154150
"circlearrowright" => "\u21bb", # ↻ synonym of cwopencirclearrow
151+
152+
"ohm" => "",
153+
"leq" => "", # synonym of le
154+
"geq" => "", # synonym of ge
155+
"bbsemi" => "",
156+
"ith" => "", # mathematical italic small h (planck constant)
157+
"tricolon" => "", # tricolon
158+
"join" => "", # synonym of Join
155159
]
156160

157161
# Vulgar fractions
@@ -249,6 +253,10 @@ const superscripts = [
249253
"^phi" => "",
250254
"^chi" => "",
251255
"^Phi" => "",
256+
257+
"^uparrow" => "",
258+
"^downarrow" => "",
259+
"^!" => "",
252260
]
253261

254262
const subscripts = [

0 commit comments

Comments
 (0)