Skip to content

Commit f3561ae

Browse files
authored
Add latex mappings for subscript < and > (#52980)
Adds new latex mappings `\_<` => `˱` and similar for `>` to complement the existing `\_=`, `\_+`, `\_-`. Useful for describing set indices in a variable name like `x˱ᵢ`.
1 parent 800f67a commit f3561ae

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

stdlib/REPL/src/latex_symbols.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,8 @@ const latex_symbols = Dict(
207207
"\\_+" => "",
208208
"\\_-" => "",
209209
"\\_=" => "",
210+
"\\_<" => "˱",
211+
"\\_>" => "˲",
210212
"\\_(" => "",
211213
"\\_)" => "",
212214
"\\_a" => "",

0 commit comments

Comments
 (0)