Skip to content

Commit

Permalink
Add latex mappings for subscript < and > (#52980)
Browse files Browse the repository at this point in the history
Adds new latex mappings `\_<` => `˱` and similar for `>` to complement
the existing `\_=`, `\_+`, `\_-`. Useful for describing set indices in a
variable name like `x˱ᵢ`.
  • Loading branch information
MilesCranmer committed May 6, 2024
1 parent 800f67a commit f3561ae
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions stdlib/REPL/src/latex_symbols.jl
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,8 @@ const latex_symbols = Dict(
"\\_+" => "",
"\\_-" => "",
"\\_=" => "",
"\\_<" => "˱",
"\\_>" => "˲",
"\\_(" => "",
"\\_)" => "",
"\\_a" => "",
Expand Down

0 comments on commit f3561ae

Please sign in to comment.