Skip to content

Commit

Permalink
use U+27E8/27E9 (mathematical angle bracket) for langle/rangle, inste…
Browse files Browse the repository at this point in the history
…ad of U+2329/232A (angle bracket), as the former are recommended by Unicode for math & technical usage
  • Loading branch information
stevengj committed May 27, 2014
1 parent b78eea9 commit 7f5e311
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions base/latex_symbols.jl
Original file line number Diff line number Diff line change
Expand Up @@ -559,8 +559,8 @@ const latex_symbols = [
"\\lrcorner" => "",
"\\frown" => "",
"\\smile" => "",
"\\langle" => "",
"\\rangle" => "",
"\\langle" = "",

This comment has been minimized.

Copy link
@JeffBezanson

JeffBezanson May 27, 2014

Member

Typo.

"\\rangle" => "",
"\\obar" => "",
"\\Elzdlcorn" => "",
"\\lmoustache" => "",
Expand Down

2 comments on commit 7f5e311

@JeffBezanson
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Needs to be changed in the emacs mode too.

@stevengj
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yup, I was planning to update emacs after #6927 is merged. The brackets aren't urgent since they currently aren't allowed in Julia code anyway. (Though it would be cool to be able to define 〈a, b〉 as some function anglebracket(a,b).)

Please sign in to comment.